C# MailTo with Attachment?
Currently I am using the below method to open the users outlook email account and populate an email with the relevant content for sending: public void SendSupportEmail(string emailAddress, string subject, string body) { Process.Start("mailto:" + emailAddress + "?subject=" + subject + "&body=" + body); } I want to however, be able to populate the email with an attached file. something like: public void SendSupportEmail(string emailAddress, string subject, string body) { Process.Start("mailto:" + emailAddress + "?subject=" + subject + "&body=" + body + "&Attach=" + @"C:\Documents and Settings