I'm trying to insert a link into the body of an email:
string.Format("mailto:[email protected]?subject{0}&body{1}", "Subject Message", "Http://hostname/default.aspx?id={0000000-00000-0000-00000000000)&language=en");
My issue is that the link stops before { and the complete link is not clickable.
I have tried to replace { by %7B and } by %7D but it's not working. Do you have any idea on how to implement that kind of URL ?
Thank you