Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private WithEvents myOutlook As Outlook.Application
Private Sub Form_Load()
Set myOutlook = GetObject(, "outlook.application")
End Sub
Private Sub myOutlook_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim myMailItem As MailItem
Dim myRecip As Recipient
Set myMailItem = Item
With myMailItem
Debug.Print .To
Debug.Print .CC
Debug.Print .Subject
Debug.Print .Body
End With
End Sub