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