HardCoreCoder
Programmer
How do I add hard breaks when sending text email? I have the code shown below, what do I add to break up the lined in the body of the email?
<%@language="VBScript"%>
<%Option Explicit%>
Dim objMail
Set objMail=CreateObject("CDO.Message")
objMail.Subject=strSubject
objMail.From="mpbarone@aaamichigan.com"
objMail.To="mpbarone@aaamichigan.com"
objMail.TextBody="Message: " & strMsg &_
"Phone: " & strDeptPhone &_
"Perspective: " & strPerspective &_
"Assignment: " & strClassAssignment
objMail.Configuration.Fields.Item (" = 2
objMail.Configuration.Fields.Item (" = "204.78.xxx.242"
objMail.Configuration.Fields.Item (" = 25
objMail.Configuration.Fields.Update
objMail.Send
Set objMail=nothing
<%@language="VBScript"%>
<%Option Explicit%>
Dim objMail
Set objMail=CreateObject("CDO.Message")
objMail.Subject=strSubject
objMail.From="mpbarone@aaamichigan.com"
objMail.To="mpbarone@aaamichigan.com"
objMail.TextBody="Message: " & strMsg &_
"Phone: " & strDeptPhone &_
"Perspective: " & strPerspective &_
"Assignment: " & strClassAssignment
objMail.Configuration.Fields.Item (" = 2
objMail.Configuration.Fields.Item (" = "204.78.xxx.242"
objMail.Configuration.Fields.Item (" = 25
objMail.Configuration.Fields.Update
objMail.Send
Set objMail=nothing