Page 1 of 1

Send mail

Posted: Tue Jan 05, 2010 10:48 pm
by Lewis
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Test mail"
myMail.From="lewis@froom.me"
myMail.To="lewis@froom.me"
myMail.HTMLBody = "<h1>This is a message.</h1><h2>Hi</h2>"
myMail.Send
set myMail=nothing
%>

Well thats how to do it xD

Re: Send mail

Posted: Mon Mar 01, 2010 4:17 am
by Livengood
Very Nice Tutorial :)

Re: Send mail

Posted: Sat Jun 26, 2010 2:14 am
by Brown
I agree with Livengood!

Re: Send mail

Posted: Thu Jul 22, 2010 2:51 pm
by zachman61
don't understand asp but thanks

Re: Send mail

Posted: Wed Nov 17, 2010 8:48 pm
by Alex
How do you set SMPT/POP3 servers to send through?
This looks a lot like Ruby.