You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
522 B
Plaintext

<%
Dim objCDONTS
'create an instance of the object
Set objCDONTS = Server.CreateObject("CDONTS.NewMail")
'senders emial address
objCDONTS.From = "myaddress@email.com"
'recipients email address
objCDONTS.To = "someonelses@email.com"
'this is your subject (title of email)
objCDONTS.Subject = "here is the file"
'file to be attached
objCDONTS.AttachFile "d:\myfile.txt"
'main text body
objCDONTS.Body ="Here is the file we promised"
'send the email
objCDONTS.Send
Set objCDONTS = Nothing
%>