Outlook 中有多个帐户,只想通过一个帐户发送

Outlook 中有多个帐户,只想通过一个帐户发送

目前,无论您在哪个帐户的收件箱或文件夹中创建新电子邮件,Outlook 都希望从该帐户发送电子邮件。但我只想从一个特定的帐户发送(其他帐户仅受监控,不用于发送电子邮件)。

我想要用于发送电子邮件的帐户在“帐户设置”中设置为默认帐户 - 有什么方法可以确保这是 Outlook 始终发送的帐户?

或者,如果我没有注意到自己是通过错误的帐户发送电子邮件,是否有一条 Outlook 规则可以停止该电子邮件?

使用 Outlook 2010。

谢谢

答案1

使用一些 VBA,您可以检查哪个帐户正在发送。

Private Sub Application_ItemSend(ByVal item As Object, Cancel As Boolean)

If item.SendUsingAccount <> "[email protected]" Then
    MsgBox "Sending from wrong account. Send action will be cancelled."
    Cancel = True
    Exit Sub
End If

End Sub

Alt + F11 打开 VBA 编辑器。粘贴到 ThisOutlookSession 模块中

相关内容