How can I add an attachment to the mailto function in C#?
This is what I have so far:
VWGClientContext.Current.Invoke("(function() {window.location.href='mailto:" + "myemail@outlook.com" + "?Subject=" + "SubjectText" + "&body=" + "BodyText" + "'; })();");
Is it something like this "&Attachment=" ....?
The file that needs to be added is stored on a server not a local pc.