Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim s As String
s = Item.SenderEmailAddress '差出人
If s <> "xxx@xxx" Then
MsgBox ("xxx@xxxで送信してください。")
Cancel = True
End If
End Sub
「ByVal Item As Object」 は多分 MailItem