Create email in default email app...

lidds

Well-known member
Joined
Oct 19, 2004
Messages
122
Programming Experience
Beginner
What I want to be able to do is create a new email withn the users default emaill app. the same as mailto command in html

Regards

Simon
 
You can also use the mailto command with Process.Start.
VB.NET:
Process.Start("mailto:user@any.net?subject=hello")
 
The protocol doesn't support this, but some clients may have implemented their own support for it.
 
Back
Top