i just figured out i need asp to send a form via email, i found one at w3schools:
would i chage HTMLBody to HTMLForm? or am i totally wrong?Code:<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Sending email with CDO" myMail.From="mymail@mydomain.com" myMail.To="someone@somedomain.com" myMail.HTMLBody = "<h1>This is a message.</h1>" myMail.Send %>
thanks..



Reply With Quote

Bookmarks