Compartir a través de


EmailOptions.EmailSignature Property (Word)

Returns an EmailSignature object that represents the signatures Microsoft Word appends to outgoing e-mail 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 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

See Also

Concepts

EmailOptions Object

EmailOptions Object Members