How to use ASP & Sending Mail with CDONTS.NewMail This is learn/tutorial asp developers how to using ASP script Sending Mail with CDONTS.NewMail
ShotDev Focus:
- ASP & Sending Mail with CDONTS.NewMail
Example
asp_cdo_sendmail.asp
<html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <% Dim myMail,HTML Set myMail = Server.CreateObject("CDONTS.NewMail") myMail.From = "webmaster@shotdev.com" myMail.To = "member@shotdev.com" myMail.Subject = "My Subject" myMail.Body = "My Body & My Description" myMail.Send Response.write ("Mail Sending.") Set myMail = Nothing %> </body> </html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_cdo_sendmail.asp
Screenshot