How to send E-mails with classic ASP
There’s numerous ways of sending E-mails with classic ASP but the following is our recommended way to do it:<%
Set myMail=CreateObject(“CDO.Message”)
‘E-mail subject:
myMail.Subject=”Sending email with CDO”
‘The from address:
myMail.From=”from@example.com”
‘The to address:
myMail.To=”to@example.com”
‘Text:
myMail.TextBody=”Your text goes here when sending e-mails”
myMail.Configuration.Fields.Item _ (“http://schemas.microsoft.com/cdo/configuration/sendusing”)=2
‘Outgoing SMTP server, localhost in this case:
myMail.Configuration.Fields.Item _ (“http://schemas.microsoft.com/cdo/configuration/smtpserver”)= “localhost”
‘Outgoing SMTP port, 25 for SMTP:
myMail.Configuration.Fields.Item _ (“http://schemas.microsoft.com/cdo/configuration/smtpserverport”)=25
myMail.Configuration.Fields.Update
‘Send the E-mail:
myMail.Send set myMail=nothing
%>
The above code has been verified with both Crystone 2010 & 2012 packages.