Hello,
I have a vb.net app that has the functionality to open up an email client, and send off an email.
The problem I'm facing is when the "body" object of the mailto function exceeds 256 characters, I get access denied when it attempts to send the email.
Here is the code where the program fails:
Diagnostics.Process.Start("mailto: " & SendTo & "&subject=" & Subject & "&body" & Body)
I need to have the email client pop up so that the end user can add comments to the body if need be.
I have included Web.HttpUtility.UrlEncode against the Body variable to handle any special characters in the text.
Thanks in advance