EmailSignature 属性

       

返回一个 EmailSignature 对象,该对象代表 Microsoft Word 附加在待发电子邮件正文后面的签名。只读。

示例

本示例显示 Word 附加在新的待发电子邮件正文后面的签名。

With Application.EmailOptions.EmailSignature
    If .NewMessageSignature = "" Then
        MsgBox "There is no signature for new " _
            & "e-mail messages!"
    Else
        MsgBox "The signature for new e-mail" _
            & "messages is: " & vbLf & vbLf _
            & .NewMessageSignature
    End If
End With