How to Send Email
Posted on January 5, 2009
1 2 3 4 5 6 7 8 | 'Internet - How to Send Email Option Explicit Private Sub Command1_Click() 'To open the default E-mail program: RetVal = Shell("Start.exe mailto:myemail@hotmail.com", vbNormalFocus) End Sub |
1 2 3 4 5 6 7 8 | 'Internet - How to Send Email Option Explicit Private Sub Command1_Click() 'To open the default E-mail program: RetVal = Shell("Start.exe mailto:myemail@hotmail.com", vbNormalFocus) End Sub |