emailing code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NEHU
    New Member
    • Aug 2007
    • 12

    emailing code

    hello everyone,, well i need a code in vb which could send emails ,,pls help me
  • Dwien
    New Member
    • Oct 2007
    • 1

    #2
    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

    Working...