9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
<%
|
|
set objMail=Server.CreateObject("CDONTS.NewMail")
|
|
objMail.To="sample@emailaddress.com"
|
|
objMail.From="from@otheremail.com"
|
|
objMail.Subject="Place the subject here"
|
|
objMail.Body="Place body text here"
|
|
objMail.Send
|
|
set objMail=Nothing
|
|
%> |