Simple mail sender including reference of outlook express
Simple mail sender including reference of outlook express
API Declarations
Dim ap As Outlook.Application
Dim mail As Outlook.MailItem
Rate Simple mail sender including reference of outlook express
(1(1 Vote))
' Microsoft outlook 9.0 object library
' Then copy the given code in the load event of form
Set ap = New Outlook.Application
Set mail = ap.CreateItem(olMailItem)
With mail
mail.To = "Receiver's address"
mail.Subject = "Subject"
mail.BCC = ""
mail.CC = ""
mail.Body = "Your Message"
mail.Send
End With
Simple mail sender including reference of outlook express Comments
No comments yet — be the first to post one!
Post a Comment