EmailSignatureEntries Collection

EmailSignatureEntries Collection
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

EmailSignature
Aa192465.parchild(en-us,office.10).gifEmailSignatureEntries
Aa192465.space(en-us,office.10).gifAa192465.parchild(en-us,office.10).gifEmailSignatureEntry

A collection of EmailSignatureEntry objects that represents all the e-mail signature entries available to Word.

Using the EmailSignatureEntries collection

Use the EmailSignatureEntries property to return the EmailSignatureEntries collection. Use the Add method of the EmailSignatureEntries object to add an e-mail signature to Word.  The following example creates a new e-mail 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 e-mail 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