title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Presentation.SendFaxOverInternet method (PowerPoint) |
vbapp10.chm583085 |
|
|
4470cafb-16f5-045b-1dab-8f8ead50ffe0 |
06/08/2017 |
medium |
Sends a presentation as a fax to the specified recipients.
expression. SendFaxOverInternet
( _Recipients_
, _Subject_
, _ShowMessage_
)
expression A variable that represents a Presentation object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Recipients | Optional | Variant | A String that represents the fax numbers and email addresses of the people to whom to send the fax. Separate multiple recipients with a semicolon. |
Subject | Optional | Variant | A String that represents the subject line for the faxed presentation. |
ShowMessage | Optional | Variant | Whether to display the fax message before sending it. True displays the fax message before sending it. False sends the fax without displaying the fax message. |
Using the SendFaxOverInternet method requires that the fax service be enabled on a user's computer.
The format used for specifying fax numbers in the Recipients parameter is either recipientsfaxnumber @ usersfaxprovider or recipientsname @ recipientsfaxnumber. You can access the user's fax provider information by using the following registry path:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\Services\Fax
Use the FaxAddress
key value under the above registry path to determine the format to use for a user.
The following example sends a fax to the fax service provider, who will fax the message to the recipient.
ActivePresentation.SendFaxOverInternet _
"[email protected]", _
"For your review", True
[!includeSupport and feedback]