diff options
author | Elmer Thomas <elmer@ThinkingSerious.com> | 2016-11-17 14:22:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-17 14:22:06 -0800 |
commit | 8371f81246da55161bd41a13fb3ebb4160dcc598 (patch) | |
tree | 16577b40023093e79fac8f0a8de583fe23cc58da | |
parent | 27093d3e22741f7e635ba180b94874b3ad7e01d1 (diff) | |
parent | 6a73e933ed1332a98b1586765c5861d20d345a38 (diff) | |
download | sendgrid-php-8371f81246da55161bd41a13fb3ebb4160dcc598.zip sendgrid-php-8371f81246da55161bd41a13fb3ebb4160dcc598.tar.gz sendgrid-php-8371f81246da55161bd41a13fb3ebb4160dcc598.tar.bz2 |
Merge pull request #329 from sendgrid-gists/patch-1
Typo
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -88,10 +88,10 @@ The following is the minimum needed code to send an email with the [/mail/send H ```php <?php -// If you are using Composer +// If you are using Composer (recommended) require 'vendor/autoload.php'; -// If you are not using Composer (recommended) +// If you are not using Composer // require("path/to/sendgrid-php/sendgrid-php.php"); $from = new SendGrid\Email(null, "test@example.com"); @@ -117,10 +117,10 @@ The following is the minimum needed code to send an email without the /mail/send ```php <?php -// If you are using Composer +// If you are using Composer (recommended) require 'vendor/autoload.php'; -// If you are not using Composer (recommended) +// If you are not using Composer // require("path/to/sendgrid-php/sendgrid-php.php"); $request_body = json_decode('{ |