We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a29e215 commit 815b8e2Copy full SHA for 815b8e2
2 files changed
CHANGELOG
@@ -1,4 +1,8 @@
1
-=== 2.0.0-beta 2017-11-08
+=== 2.0.1 2018-01-12
2
+
3
+* added example for using content_url param
4
5
+=== 2.0.0 2017-12-04
6
7
* rewrite for v2 of Phaxio API; uses more resource-oriented object structure
8
@@ -13,4 +17,4 @@
13
17
=== 1.0.1 2014-09-08
14
18
15
19
* faxFile operation is now supported via the download() function
16
-* fix for #2
20
+* fix for #2
examples/sendContentUrls.php
@@ -0,0 +1,18 @@
+<?php
+require_once('phaxio_config.php');
+require_once('autoload.php');
+$params = array(
+ 'to' => $toNumber,
+ 'content_url' => array(
9
+ 'https://www.phaxio.com',
10
+ 'https://www.example.com'
11
+ )
12
+);
+$phaxio = new Phaxio($apiKeys[$apiMode], $apiSecrets[$apiMode], $apiHost);
+$result = $phaxio->sendFax($params);
+var_dump($result);
0 commit comments