Compartilhar via


EmailSignature.NewMessageSignature Property

Word Developer Reference

Returns or sets the signature that Microsoft Word appends to new e-mail messages. Read/write String.

Syntax

expression.NewMessageSignature

expression   An expression that returns an EmailSignature object.

Remarks

When setting this property, you must use the name of an e-mail signature that you have created in the E-mail Options dialog box, available from the General tab of the Options dialog box (Tools menu).

Example

This example changes the signature Word appends to new outgoing e-mail messages.

Visual Basic for Applications
  With Application.EmailOptions.EmailSignature
    .NewMessageSignature = "Signature1"
End With

See Also