diff options
author | Rich Leland <rich.leland@messagesystems.com> | 2016-05-03 09:20:06 -0400 |
---|---|---|
committer | Rich Leland <rich.leland@messagesystems.com> | 2016-05-03 09:20:06 -0400 |
commit | fc1ee14ce3b37c504543e166957d7ce1f49ef414 (patch) | |
tree | 8ceccdeb7df4d60fa5d771c0e4136fb0a5a32b75 /examples/transmission/send_transmission_all_fields.php | |
parent | 599ce4654de8879e036833334b08dc60b023d51c (diff) | |
download | php-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.zip php-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.tar.gz php-sparkpost-fc1ee14ce3b37c504543e166957d7ce1f49ef414.tar.bz2 |
Fix typos, update language in examples
Diffstat (limited to 'examples/transmission/send_transmission_all_fields.php')
-rw-r--r-- | examples/transmission/send_transmission_all_fields.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/transmission/send_transmission_all_fields.php b/examples/transmission/send_transmission_all_fields.php index 35115e7..51b6a89 100644 --- a/examples/transmission/send_transmission_all_fields.php +++ b/examples/transmission/send_transmission_all_fields.php @@ -38,7 +38,7 @@ try{ 'startTime'=>'2016-03-17T08:00:00-04:00', 'from'=>[ 'name' => 'From Envelope', - 'email' => 'from@sparkpostbox.com>' + 'email' => 'from@sparkpostbox.com' ], 'html'=>'<p>Hello World! Your name is: {{name}}</p>', 'text'=>'Hello World!', @@ -59,7 +59,7 @@ try{ ] ]); - echo 'Congrats you can use your SDK!'; + echo 'Congrats! You sent an email using SparkPost!'; } catch (\Exception $exception) { echo $exception->getMessage(); } |