I am working on a page that takes information from a form, puts it into a message, and sends it to a manager using ASP & VBscript. (I am pretty new at this.) My problem is that there is a link in the message that is broken because it is too long for the length of the line in the message. Is there a way to change the limit of the line length in the message? I cannot just send the message as HTML (thought of that) because it may go to UNIX mail that cannot handle that. Any suggestions?
Here's how the code looks that I am using:
Messagestring = Messagestring & "blah blah blah"
Messagestring = Messagestring & " More blah blah blah"
set CreateMail = Server.CreateObject ("CDONTS.NewMail"
CreateMail.From = Request.form("FromEmail"
CreateMail.To = Request.Form("ToEmail"
CreateMail.Subject = "The Subject"
CreateMail.Body = MessageString
CreateMail.Send
Set CreateMail = Nothing
Here's how the code looks that I am using:
Messagestring = Messagestring & "blah blah blah"
Messagestring = Messagestring & " More blah blah blah"
set CreateMail = Server.CreateObject ("CDONTS.NewMail"
CreateMail.From = Request.form("FromEmail"
CreateMail.To = Request.Form("ToEmail"
CreateMail.Subject = "The Subject"
CreateMail.Body = MessageString
CreateMail.Send
Set CreateMail = Nothing