PDA

View Full Version : string in the body of mail


rybosom
02-04-2008, 03:26 PM
why I cant add string to the body of mail:
LAN = System.GetLANInfo();
user = System.GetLANInfo().User;
File.OpenEmail("user@yourdomain.com?&Subject=test&Body=..user..", SW_SHOWNORMAL);
?

RizlaUK
02-04-2008, 04:28 PM
try this

LAN = System.GetLANInfo();
user = System.GetLANInfo().User;
File.OpenEmail("user@yourdomain.com?&Subject=test&Body="..user, SW_SHOWNORMAL);

rybosom
02-05-2008, 01:19 PM
works, thx
but how to change to add string to the topic of mail?
File.OpenEmail("user@yourdomain.com?&Subject="..date.."&Body="..user , SW_SHOWNORMAL);

RizlaUK
02-05-2008, 03:12 PM
http://www.indigorose.com/forums/showthread.php?t=22231&highlight=send+email