有没有办法在 Outlook 07 中将电子邮件标记为“未完成”或“草稿”,以便我在对其进行更改时不会意外发送它?
答案1
我们在 Outlook 2003 中使用了类似以下脚本的内容:-
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
'Ignore Non Email Objects
If Item.Class <> olMail Then Exit Sub
'Prevent Sending of email with the word Draft in the Subject
If InStr(1, Item.Subject, "draft", vbTextCompare) > 0 Then
Ans = MsgBox("You are not permitted to send Draft Emails", vbExclamation + vbOKOnly, "Draft Emails")
Cancel = True
End If
End Sub
我应该补充一点,它寻找的是草稿在邮件主题中,如果发现它将阻止发送电子邮件。
答案2
被咬过一次之后,我只发了一封电子邮件后我已经写完了。
答案3
我添加垃圾到 CC: 行,如“ZZZ”。Outlook 不会以这种方式发送。
这样,您在撰写邮件时仍然可以准备带有正确收件人的收件人行。
我还告诉 Outlook 将所有发送的消息延迟 2 分钟,因为我经常在点击发送后才想起一些重要的事情。
答案4
将其设置为对所有电子邮件进行拼写检查 - 很有可能它会发现其中的一些内容。如果有疑问,请确保您的签名中没有字典中的内容...