PDA

View Full Version : Email Body


markstaylor
12-08-2004, 04:26 PM
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

Dez
12-08-2004, 06:46 PM
"you@youraddress.com?Subject=info&Body=stuff"

or
var=stuff
"you@youraddress.com?Subject=info&Body="..var;

Have fun
Dez

markstaylor
12-08-2004, 08:56 PM
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.


??

Dez
12-08-2004, 10:34 PM
Here is a small example....hope it helps.

Dez