如何在Outlook 2007中强制使用主题字段?

时间:2008-12-17 07:21:05

标签: vba outlook

我总是忘记在电子邮件中写主题,所以我想强制主题字段。 你能帮帮我吗?

3 个答案:

答案 0 :(得分:2)

Private Sub Application_ItemSend(ByVal Item As Object, ByRef Cancel As Boolean)

  If Item.Subject = "" Then
    Item.Subject = InputBox("Please do not always forget the subject!")
  End If

  If Item.Subject = "" Then
    MsgBox "Won't send this without a subject."
    Cancel = True
  End If
End Sub

答案 1 :(得分:0)

Do While Item.Subject = ""
Item.Subject = InputBox("..")
Loop

答案 2 :(得分:0)

我有一个类似的例行程序,只检查我是否提到附件一词,并会提示我是否要取消发送,我必须加入:

Item.Display

这样我就可以添加附件了。这样您就可以使用消息框提示添加主题...