summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Reed <Xerax@users.noreply.github.com>2014-03-28 19:07:36 +0000
committerAlex Reed <Xerax@users.noreply.github.com>2014-03-28 19:07:36 +0000
commit58c4f07bc5596a7f3587f0b2a9daadd65ad7a2f4 (patch)
treef7e90c76fcc8bc1c2559d905683f0ec228e7ccbf
parentfcd344127a81753c97c73ba6d3c2ea3fe5fa6f6b (diff)
downloadsendgrid-csharp-58c4f07bc5596a7f3587f0b2a9daadd65ad7a2f4.zip
sendgrid-csharp-58c4f07bc5596a7f3587f0b2a9daadd65ad7a2f4.tar.gz
sendgrid-csharp-58c4f07bc5596a7f3587f0b2a9daadd65ad7a2f4.tar.bz2
Updated docs
DeliverAsync is broken, so I replaced that with Deliver temporarily in the docs.
-rwxr-xr-xREADME.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index ec23ebf..f1cc133 100755
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ var credentials = new NetworkCredential("username", "password");
var transportWeb = Web.GetInstance(credentials);
// Send the email.
-transportWeb.DeliverAsync(myMessage);
+transportWeb.Deliver(myMessage);
```
#How to: Add an Attachment