Send an attachment in a email using asp

This shows you how to send a attachment via email using asp.


strFile = "c:\dir\file.vcs"

Set oNewMail = Server.CreateObject("CDONTS.NewMail")
oNewMail.From = "fuscptc@eximc.nam.dow.com"
oNewMail.To = "u369373@eximc.nam.dow.com"
oNewMail.Subject = "Updated Education & Training Session"
oNewMail.BodyFormat = 1
oNewMail.MailFormat = 0
oNewMail.Body = "This email confirms that blah."
oNewMail.Send
oNewMail.AttachFile strFile
Set oNewMail = Nothing

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment