SendFax Method
Applies To
Application object, Document object.
Description
Application object: Starts the Fax Wizard.
Document object: Sends the specified document as a fax, without any user interaction.
Syntax 1
expression.SendFax
Syntax 2
expression.SendFax(Address, Subject)
expression Required. An expression that returns an Application object (Syntax 1) or a Document object (Syntax 2).
Address Required String. The recipient's fax number.
Subject Optional Variant. The text for the subject line. The character limit is 255.
See Also
SendMail method.
Example
This example sends the active document as a fax.
ActiveDocument.SendFax Address:="12065551234", _
Subject:="Important Fax"
This example starts the Fax Wizard.
Application.SendFax