G
Guest
I am using the following code that I got from this newsgroup to start a
user's default e-mail editor and it works ok. However, I would like to
attach a file to the editor (like using word as editor)
Dim psi As New ProcessStartInfo
psi.UseShellExecute = True
psi.FileName = "mailto:" & HttpUtility.UrlEncode([To]) &
"?subject=" & Subject & "&body=" & Message
Process.Start(psi)
What do I use for the variable (like &body is used for the text body)?
user's default e-mail editor and it works ok. However, I would like to
attach a file to the editor (like using word as editor)
Dim psi As New ProcessStartInfo
psi.UseShellExecute = True
psi.FileName = "mailto:" & HttpUtility.UrlEncode([To]) &
"?subject=" & Subject & "&body=" & Message
Process.Start(psi)
What do I use for the variable (like &body is used for the text body)?