How to open default mail editor?

Drizzt

Newcomer
Joined
Aug 25, 2003
Messages
9
Location
-
HI all,

Can somebody tell me how to open the default mail-editor in visual basic .NET?

ThanX

Drizzt
 
Try this:
Visual Basic:
Process.Start("mailto:")
You can also specify a default to address and subject and stuff:
Visual Basic:
Process.Start("mailto:me@microsoft.com?subject=Hi!")
 
Be careful about the size of the body (if you use it), as it seems to cause errors if the text is too large (or possibly contains too many CRLF characters - I can't remember).

-Ner
 
Back
Top