hello everyone,, well i need a code in vb which could send emails ,,pls help me
emailing code
Collapse
X
-
Declarations
Private Declare Function ShellExecute Lib "shell32.dl l" Alias "ShellExecu teA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Const SW_SHOW = 5
Code
ShellExecute hwnd, "open", "mailto:test@wh atever.com", vbNullString, vbNullString, SW_SHOW
Comment