ForwardMailer Method

Applies To

Document object.

Description

Sets up the document mailer for forwarding by creating a new mailer that's preset with the subject and enclosures of the existing mailer. Valid only when the document has a received mailer attached to it (you can only forward a document you've received). Available only in Microsoft Word for the Macintosh, with the PowerTalk mail system extension installed.

Syntax

expression.ForwardMailer

expression   An expression that returns a Document object.

Remarks

After you use this method to set up a document mailer for forwarding, you can change the mailer settings (if necessary) by using the Mailer property, and then you can use the SendMailer method to forward the document.

Example

This example forwards the active document if it has a mailer.

With ActiveDocument
    If .HasMailer Then .ForwardMailer
End With