How does one insert a carriage return at the of a line?
Example:
Set $H1 "From: Someone"
Set $H2 "Date: "
I need a carrage return so that the Date: is on a separate line.
A:
First define a carriage return/line feed using:
Set $crlf "\n"
Then concatenate the carriage return/line feed to the end of the $H1 variable using:
Addstrings $H1 $crlf