Launch Local Mail Client from App Hosted on Citrix - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T12:36:48Z http://stackoverflow.com/feeds/question/82266 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82266/launch-local-mail-client-from-app-hosted-on-citrix 0 Launch Local Mail Client from App Hosted on Citrix Agnel Kurian 2008-09-17T11:47:04Z 2008-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#83228 1 Answer by hasseg for Launch Local Mail Client from App Hosted on Citrix hasseg 2008-09-17T13:33:09Z 2008-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&amp;body=see+attachment&amp;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>