Launch Local Mail Client from App Hosted on Citrix - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T12:36:48Zhttp://stackoverflow.com/feeds/question/82266http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82266/launch-local-mail-client-from-app-hosted-on-citrix0Launch Local Mail Client from App Hosted on CitrixAgnel Kurian2008-09-17T11:47:04Z2008-09-17T13:33:09Z
<p>I have a desktop application (Windows Forms) which my client hosts on a Citrix server. I would like to launch the user's locally configured mail client to send mail from my application. How do I do this?</p>
<p>In addition to this, I will need to attach a file to the email before it is sent.</p>
http://stackoverflow.com/questions/82266/launch-local-mail-client-from-app-hosted-on-citrix/83228#832281Answer by hasseg for Launch Local Mail Client from App Hosted on Citrixhasseg2008-09-17T13:33:09Z2008-09-17T13:33:09Z<p>I'm not at all sure how the Citrix client would handle <code>mailto:</code> links (or if you can configure that), but if you haven't tried them, I suggest you do.</p>
<p>Example:</p>
<pre><code>mailto:someone@example.com?subject=hello&body=see+attachment&attachment=\\host\path-to\file.foo
</code></pre>
<p>Also note that not all email clients support the attachment parameter in <code>mailto</code> URLs.</p>