sending e-mail using the default e-mail-client
Hi everyone,
I wanna send an e-mail by using the systems default client.
I do it this way and it works:
string sMessage=string.Format("mailto:{0}?subject={1}&body={2}",sEmailAdress,sSubject, sBody);
Process.Start(sMessage);
Now I wanna create new lines in the text of the body but the standard instructions of c# like '\n\r' are simply ignored by the e-mail-client. I also tried html-tags, but it doesn`t work, too.
Can anyone help me??
Thanks a lot