Wondering how you insert line breaks into your email's text? Use vbCrLf everywhere you need a
line break! This code example shows how!
<%
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
EM = request.form("email")
reply = "Reply TO "
objMail.From = reply
objMail.Subject = "Line breaks in CDONTS from ASPadvice"
objMail.To = "you@yourhouse.com
objMail.Body = "This is the body of the " & vbcrlf&_
"message. Sometimes the body of the " & vbcrlf&_
"message gets very long " & vbcrlf&_
"so you need TO put line breaks in. " & vbcrlf&_
"Sometimes you want TO add many line " & vbcrlf&_
"breaks like this " & vbcrlf & vbcrlf & vbcrlf&_
"Now we are way down here."
objMail.Send
Response.write("Mail was Sent")
'You must always do this with CDONTS.
set objMail = nothing
%>