送信するすべてのメールで BCC を送信するコードを VBA Outlook 2016 に書きたいと思います。多くの送信者 mail 、1 つの Outlook アカウントに多くのメールがあります。
したがって、x@domaine.com からメールを送信するたびに、x@domaine.com から BCC メールが自動的に送信されます。y@domaine1.com から送信した場合も、y@domaine1.com に BCC が送信されます。
このコードを試しましたが、機能しません。セキュリティ マクロではすべてが有効になっています
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim objRecip As Recipient
Dim strMsg As String
Dim res As Integer
Dim strBcc As String
Dim myOlApp As Outlook.Application
Dim myOlMsg As Outlook.MailItem
On Error Resume Next
Set myOlApp = CreateObject("Outlook.Application")
Set myMsg = myOlApp.ActiveInspector.CurrentItem
strBcc = myMsg.SenderEmailAddress
Set objRecip = Item.Recipients.Add(strBcc)
objRecip.Type = olBCC
If Not objRecip.Resolve Then
strMsg = "Could not resolve the Bcc recipient. " & _
"Do you want still to send the message?"
res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
"Could Not Resolve Bcc Recipient")
If res = vbNo Then
Cancel = True
End If
End If
Set objRecip = Nothing
End Sub