EmailSignatureEntries object (Word)

A collection of EmailSignatureEntry objects that represents all the email signature entries available to Word.

Remarks

Use the EmailSignatureEntries property to return the EmailSignatureEntries collection. Use the Add method of the EmailSignatureEntries object to add an email signature to Word. The following example creates a new email signature entry based on the author's name and a selection in the active document, and then it sets the new signature entry as the default email signature to use for new messages.

Sub NewEmailSignature() 
 With Application.EmailOptions.EmailSignature 
 .EmailSignatureEntries.Add "Jeff Smith", Selection.Range 
 .NewMessageSignature = "Jeff Smith" 
 End With 
End Sub

See also

Word Object Model Reference

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.