Your Ad Here

Posted By

krisdb on 03/08/07


Tagged

ASP


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

asifrizvigmailcom


CDONTS


 / Published in: ASP
 

  1. Dim oMail,sBody
  2.  
  3. sBody = ""
  4.  
  5. Set oMail = Server.CreateObject("CDONTS.NewMail")
  6. oMail.Subject = ""
  7. oMail.to = "kris@peerlis.com"
  8. oMail.From = ""
  9.  
  10. oMail.mailFormat = 0
  11. oMail.bodyFormat = 0
  12. oMail.Body = sBody
  13. oMail.Send
  14. Set oMail = nothing

Report this snippet  

You need to login to post a comment.