summaryrefslogtreecommitdiffstats
path: root/examples/transmission/stored_recipients_inline_content.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/stored_recipients_inline_content.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/stored_recipients_inline_content.php')
-rw-r--r--examples/transmission/stored_recipients_inline_content.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/transmission/stored_recipients_inline_content.php b/examples/transmission/stored_recipients_inline_content.php
index 8a605f5..b31167c 100644
--- a/examples/transmission/stored_recipients_inline_content.php
+++ b/examples/transmission/stored_recipients_inline_content.php
@@ -19,7 +19,7 @@ try {
'campaign'=>'my-campaign',
'from'=>[
'name' => 'From Envelope',
- 'email' => 'from@sparkpostbox.com>'
+ 'email' => 'from@sparkpostbox.com'
],
'html'=>'<p>Hello World! Your name is: {{name}}</p>',
'text'=>'Hello World!',
@@ -27,7 +27,7 @@ try {
'recipientList'=>'Example List'
]);
- echo 'Congrats you can use your SDK!';
+ echo 'Congrats! You sent an email using SparkPost!';
} catch (\Exception $exception) {
echo $exception->getMessage();
}