是否有设置可以停止在空主题行上警告我?

Bob*_*Bob 2 microsoft-outlook-2010

可能重复:
如何使 Outlook 2010 不对空主题发出警告?

有人问过这个,但我从来没有看到答案:

是否有设置在空主题行上停止警告我?

Tam*_*man 7

更新:实际上,由于遇到这个问题和“有人问过这个”,我寻找了重复项:

如何让 Outlook 2010 不会在空主题行上提醒我?

它确实回答了这个问题:

Option Explicit

'=========================================================================
' Prevents Outlook® 2010 to display a no-subject warning message
' (c) Peter Marchert - http://www.outlook-stuff.com
' 2010-07-15 Version 1.0.0
' 2010-07-19 Version 1.0.1
'=========================================================================

Private WithEvents colInspectors As Outlook.Inspectors

Private Sub Application_Startup()

    '---------------------------------------------------------------------
    ' Set a reference to all forms
    '---------------------------------------------------------------------
    Set colInspectors = Outlook.Inspectors

End Sub

Private Sub colInspectors_NewInspector(ByVal Inspector As Inspector)

    '---------------------------------------------------------------------
    ' This code is running if a form (e. g. an e-mail) will be opened
    '---------------------------------------------------------------------

    Dim objItem As Object

    '---------------------------------------------------------------------
    ' Skip errors
    '---------------------------------------------------------------------
    On Error GoTo ExitProc

    '---------------------------------------------------------------------
    ' Set a reference to the open item
    '---------------------------------------------------------------------
    Set objItem = Inspector.CurrentItem

    '---------------------------------------------------------------------
    ' A new item does not have a received time
    '---------------------------------------------------------------------
    If Year(objItem.ReceivedTime) = 4501 Then

        '-----------------------------------------------------------------
        ' Check if the subject is empty if an e-mail was created by a
        ' template with predefined subject.
        '-----------------------------------------------------------------
        If objItem.Subject = "" Then objItem.Subject = " "

    End If

    ExitProc:

    '---------------------------------------------------------------------
    ' Delete the reference to the form and to the item
    '---------------------------------------------------------------------
    Set objItem = Nothing
    Set Inspector = Nothing

End Sub

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

    On Error Resume Next

    '---------------------------------------------------------------------
    ' If the blank still exists it will now be removed (Outlook®
    ' will this not recognize)
    '---------------------------------------------------------------------
    Item.Subject = Trim(Item.Subject)

End Sub

Private Sub Application_Quit()

    '---------------------------------------------------------------------
    ' Delete the reference to the forms
    '---------------------------------------------------------------------
    Set colInspectors = Nothing

End Sub
Run Code Online (Sandbox Code Playgroud)

旧答案,参考微软选择的解释:

为什么要发送主题行为空的邮件?你发送一封带有意图的邮件,主题是总结这一点。将主题行留空会增加垃圾邮件的可信度,因此您的邮件可能会被视为垃圾邮件。

Outlook 被设计为企业级或企业电子邮件客户端,并非专门供个人/家庭使用。如果您收到大量邮件,则通过主题行扫描比通过内容正文更容易确定对每封邮件采取的操作......

值得注意的是:许多用户在发送没有主题行的邮件时遇到问题,因此他们要求 Microsoft 在 Outlook 2010 中实现此行为,您可以请求切换此选项,以便他们可以在下一个服务包中实现它。尝试 Microsoft 客户服务...

  • 人们赞成这个问题,所以我不会在这个答案上浪费您的时间,它确实没有给出直接的“否”答案,但确实解释了其背后的推理,并且应该清楚,仅通过查看答案就没有设置. 换句话说,我会提供一种直接的方法来更改这样的设置......这不是人身攻击,而只是做出此类决定的原因,因此没有这样的选项让您有两个选择:请求功能或接受决定。 (2认同)