Com alguns VBA, você pode verificar qual conta está enviando.
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 para abrir o editor do VBA. Cole no módulo ThisOutlookSession