EmailSignature.EmailSignatureEntries property (Word)

Returns an EmailSignatureEntries object that represents the email signature entries in Microsoft Word. Read-only.

Syntax

expression. EmailSignatureEntries

expression An expression that returns an 'EmailSignature' object.

Remarks

An email signature is standard text that ends an email message, such as your name and telephone number. Use the EmailSignatureEntries property to create and manage a collection of email signatures that Word will use when creating email messages.

Example

This example creates a new signature entry based on the author's name and the selection in the active document.

Sub NewSignature() 
 Application.EmailOptions.EmailSignature _ 
 .EmailSignatureEntries.Add _ 
 Name:=ActiveDocument.BuiltInDocumentProperties("Author"), _ 
 Range:=Selection.Range 
End Sub

See also

EmailSignature 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.