我希望Outlook在所有外發郵件上提示輸入密碼或進行某種身份驗證,因爲有人繼續以我的帳戶名義發送郵件。發送時提示輸入密碼
我已經寫:
If Omail.SendUsingAccount = "My Domain Email account typed here" Then
Sub password()
Dim pass As String
pass = InputBox("Enter Password")
If pass <> "thepassword" Then Exit Sub
End Sub
這是行不通的。我有正確的代碼後,我可以將其插入自定義操作規則?
也許這是一個代表問題。 https://support.office.com/en-us/article/Allow-someone-else-to-manage-your-mail-and-calendar-41c40c04-3bd1-4d22-963a-28eafec25926 – niton