web 2.0

How to use ASP & Sending Mail with CDO.Message

How to use ASP & Sending Mail with CDO.Message This is learn/tutorial asp developers how to using ASP script Sending Mail with CDO.Message

ShotDev Focus:
- ASP & Sending Mail with CDO.Message

Example

asp_cdomessage_mail.asp

  1. <html>  
  2. <head>  
  3. <title>ShotDev.Com Tutorial</title>  
  4. </head>  
  5. <body>  
  6. <%  
  7. Dim myMail,HTML  
  8.   
  9. Set myMail = Server.CreateObject("CDO.Message")  
  10.   
  11. myMail.From = "webmaster@shotdev.com"  
  12. myMail.To   = "member@shotdev.com"  
  13. myMail.Subject = "My Subject"  
  14. myMail.TextBody = "My Body & My Description"  
  15.   
  16. myMail.Send  
  17. Response.write ("Mail Sending.")  
  18. Set myMail = Nothing  
  19. %>  
  20. </body>  
  21. </html>  

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_cdomessage_mail.asp

Screenshot

ASP & Sending Mail with CDO.Message
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

One Response to “How to use ASP & Sending Mail with CDO.Message”

  1. 2footstep…

Leave a Reply

You must be logged in to post a comment.