L lidds Well-known member Joined Oct 19, 2004 Messages 122 Programming Experience Beginner Dec 1, 2007 #1 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
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
P .paul. Well-known member Joined May 22, 2007 Messages 212 Programming Experience 1-3 Dec 2, 2007 #2 try this http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=5291&lngWId=10 Upvote 0 Downvote
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,873 Location Norway Programming Experience 10+ Dec 2, 2007 #3 You can also use the mailto command with Process.Start. VB.NET: Process.Start("mailto:user@any.net?subject=hello") Upvote 0 Downvote
You can also use the mailto command with Process.Start. VB.NET: Process.Start("mailto:user@any.net?subject=hello")
P .paul. Well-known member Joined May 22, 2007 Messages 212 Programming Experience 1-3 Dec 2, 2007 #4 JohnH said: You can also use the mailto command with Process.Start. VB.NET: Process.Start("mailto:user@any.net?subject=hello") Click to expand... can you specify an attachment with mailto? Upvote 0 Downvote
JohnH said: You can also use the mailto command with Process.Start. VB.NET: Process.Start("mailto:user@any.net?subject=hello") Click to expand... can you specify an attachment with mailto?
JohnH VB.NET Forum Moderator Staff member Joined Dec 17, 2005 Messages 15,873 Location Norway Programming Experience 10+ Dec 2, 2007 #5 The protocol doesn't support this, but some clients may have implemented their own support for it. Upvote 0 Downvote
P .paul. Well-known member Joined May 22, 2007 Messages 212 Programming Experience 1-3 Dec 2, 2007 #6 ok thanks. Upvote 0 Downvote