How can I launch default emailer from my application and attach a file to Email message?
I used code, passing as a parameter string ‘mailto:[email protected]’
Dim myproc As System.Diagnostics.Process
myproc = New System.Diagnostics.Process()
Dim s As System.Diagnostics.ProcessStartInfo
myproc.EnableRaisingEvents = False
myproc.Start(strRecepient)
Is there another way of doing that?
