Expand Minimize
This topic has not yet been rated - Rate this topic

EmailOptions.EmailSignature Property (Word)

Returns an EmailSignature object that represents the signatures Microsoft Word appends to outgoing e-mail messages. Read-only.

expression .EmailSignature

expression A variable that represents a EmailOptions object.

This example displays the signature Word appends to new outgoing e-mail messages.

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
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.