diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:37:09 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-22 17:37:09 -0700 |
commit | ccef94d38b927e8855cf18e9e9ffb47deed448f5 (patch) | |
tree | c6af43c7baad919a9b14ae95cc571620a58cf783 | |
parent | 760d4a3f12648fb462e5157e568dd200db753404 (diff) | |
download | sendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.zip sendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.tar.gz sendgrid-csharp-ccef94d38b927e8855cf18e9e9ffb47deed448f5.tar.bz2 |
README formatting fixesorigin/259-async-fix
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -57,6 +57,7 @@ The following is the minimum needed code to send an email with the [/mail/send H using System; using SendGrid; using SendGrid.Helpers.Mail; +using System.Threading.Tasks; namespace Example { @@ -94,6 +95,7 @@ The following is the minimum needed code to send an email without the /mail/send using System; using SendGrid; using Newtonsoft.Json; // You can generate your JSON string yourelf or with another library if you prefer +using System.Threading.Tasks; namespace Example { @@ -142,6 +144,7 @@ namespace Example ```csharp using System; using SendGrid; +using System.Threading.Tasks; namespace Example { @@ -167,6 +170,7 @@ namespace Example ```csharp using System; using SendGrid; +using System.Threading.Tasks; namespace Example { |