Using the File.OpenEmail() function, how do you add line returns to the "BODY" section. I tried using \r\n but all my variables are strung together. I also tried using a string that included \r\n where needed.
Mark
Professional Software Development Tools
Using the File.OpenEmail() function, how do you add line returns to the "BODY" section. I tried using \r\n but all my variables are strung together. I also tried using a string that included \r\n where needed.
Mark
"you@youraddress.com?Subject=info&Body=stuff"
or
var=stuff
"you@youraddress.com?Subject=info&Body="..var;
Have fun
Dez
I have tried that, but I get all the variables together like this...
test = "This is a test"
test2 = "Of the Email"
test3 = "in AMS5."
all_test = test .."\r\n"..test2.."\r\n"..test3;
When I add the all_test variable to the Body it looks like this
This is a testOf the Emailin AMS5.
I would like
This is a test
Of the Email
in AMS5.
??
Here is a small example....hope it helps.
Dez