diff options
author | Alex Reed <Xerax@users.noreply.github.com> | 2014-03-28 19:07:36 +0000 |
---|---|---|
committer | Alex Reed <Xerax@users.noreply.github.com> | 2014-03-28 19:07:36 +0000 |
commit | 58c4f07bc5596a7f3587f0b2a9daadd65ad7a2f4 (patch) | |
tree | f7e90c76fcc8bc1c2559d905683f0ec228e7ccbf | |
parent | fcd344127a81753c97c73ba6d3c2ea3fe5fa6f6b (diff) | |
download | sendgrid-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-x | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |