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