Mailto C# attachment syntax
Posted
by Francesco Scalise
on Stack Overflow
See other posts from Stack Overflow
or by Francesco Scalise
Published on 2009-10-21T16:04:36Z
Indexed on
2010/04/07
6:03 UTC
Read the original article
Hit count: 835
How can I attach a file to this mailto string?
string mailto = "mailto:" + to + "&SUBJECT=" + subject + "?BODY=" + body +
"&Attachment=" + attachment;
This doesn't work; the file isn't attached.
© Stack Overflow or respective owner