summaryrefslogtreecommitdiffstats
path: root/examples/transmission/get_all_transmissions.php
diff options
context:
space:
mode:
authorRich Leland <rich.leland@messagesystems.com>2016-05-03 09:20:06 -0400
committerRich Leland <rich.leland@messagesystems.com>2016-05-03 09:20:06 -0400
commitfc1ee14ce3b37c504543e166957d7ce1f49ef414 (patch)
tree8ceccdeb7df4d60fa5d771c0e4136fb0a5a32b75 /examples/transmission/get_all_transmissions.php
parent599ce4654de8879e036833334b08dc60b023d51c (diff)
downloadphp-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.zip
php-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.tar.gz
php-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.tar.bz2
Fix typos, update language in examples
Diffstat (limited to 'examples/transmission/get_all_transmissions.php')
-rw-r--r--examples/transmission/get_all_transmissions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/transmission/get_all_transmissions.php b/examples/transmission/get_all_transmissions.php
index afbe5aa..d4d92c0 100644
--- a/examples/transmission/get_all_transmissions.php
+++ b/examples/transmission/get_all_transmissions.php
@@ -14,9 +14,9 @@ $httpAdapter = new Guzzle6HttpAdapter(new Client());
$sparky = new SparkPost($httpAdapter, ['key'=>$config['api-key']]);
try {
- $results = $sparky->transmission->all();
- echo 'Congrats you can use your SDK!';
+ $results = $sparky->transmission->all();
+ echo 'Congrats! You got a list of all your transmissions from SparkPost!';
} catch (\Exception $exception) {
- echo $exception->getMessage();
+ echo $exception->getMessage();
}
?>