EmailOptions.EmailSignature property (Word)

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

Syntax

expression. EmailSignature

expression A variable that represents a 'EmailOptions' object.

Example

This example displays the signature Word appends to new outgoing email messages.

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

See also

EmailOptions Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.