I am trying to create a mail message body, that will give me multiple lines... I tried this:
It worked at first, but now everything goes on the same line.
(Actually, at first I had only CHR(10), but now that doesn't even work.)
How can I create something that gives me multiple lines?
Code:
msgBody += Session("Name") & " (" & Session("id") & ") has ordered the following Supplies." & CHR(10) & CHR(13)
if candid.Text <> "" then msgBody += candid.Text & " Candid Envelopes." & CHR(10) & CHR(13)
if senior.Text <> "" then msgBody += senior.Text & " Senior Envelopes." & CHR(10) & CHR(13)
It worked at first, but now everything goes on the same line.
(Actually, at first I had only CHR(10), but now that doesn't even work.)
How can I create something that gives me multiple lines?