Add a refeerence to the Outlook object library.
Place a button and name it cmdSend

VB Code:
  1. Private Sub cmdSend_Click()
  2. Dim objOutlook As New Outlook.Application
  3. Dim objOutlookMsg As Outlook.MailItem
  4.  
  5. ' Create new message
  6. Set objOutlookMsg = objOutlook.CreateItem(olMailItem)
  7.  
  8. With objOutlookMsg
  9.     .To = "[email protected]"
  10.     .Subject = "Subjet here"
  11.     .Body = "Hello Danial, this is just a test msg"
  12.     .Importance = olImportanceHigh
  13.     .Send
  14. End With
  15.  
  16. Set objOutlookMsg = Nothing
  17. ' Close Outlook instance: Important!
  18. Set objOutlook = Nothing
  19.  
  20.  
  21. End Sub