summaryrefslogtreecommitdiffstats
path: root/examples/transmission/simple_send.php
diff options
context:
space:
mode:
Diffstat (limited to 'examples/transmission/simple_send.php')
-rw-r--r--examples/transmission/simple_send.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/transmission/simple_send.php b/examples/transmission/simple_send.php
index 245af70..08bef9a 100644
--- a/examples/transmission/simple_send.php
+++ b/examples/transmission/simple_send.php
@@ -17,7 +17,7 @@ try {
$results = $sparky->transmission->send([
'from'=>[
'name' => 'From Envelope',
- 'email' => 'from@sparkpostbox.com>'
+ 'email' => 'from@sparkpostbox.com'
],
'html'=>'<p>Hello World!</p>',
'text'=>'Hello World!',
@@ -30,7 +30,7 @@ try {
]
]
]);
- echo 'Congrats you can use your SDK!';
+ echo 'Congrats! You sent an email using SparkPost!';
} catch (\Exception $exception) {
echo $exception->getMessage();
}