summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@ThinkingSerious.com>2015-10-28 12:15:22 -0700
committerElmer Thomas <elmer@ThinkingSerious.com>2015-10-28 12:15:22 -0700
commit1f0ea577d8bc48805d4618d3d4d2fcb82a27ec61 (patch)
tree7bdea4871dc8a5f45ef792a9cf1a52807634b5ca
parente75eaee35beaf9170505db626408021c50307289 (diff)
parentd6f3b9aa0cbc72ff72a3903550a99632d00a7a1e (diff)
downloadsendgrid-csharp-1f0ea577d8bc48805d4618d3d4d2fcb82a27ec61.zip
sendgrid-csharp-1f0ea577d8bc48805d4618d3d4d2fcb82a27ec61.tar.gz
sendgrid-csharp-1f0ea577d8bc48805d4618d3d4d2fcb82a27ec61.tar.bz2
Merge pull request #155 from sendgrid/thinkingserious-console-application
Updated instructions for Console Applications
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 46037c3..088e0e7 100644
--- a/README.md
+++ b/README.md
@@ -91,6 +91,8 @@ var transportWeb = new Web("This string is an API key");
// Send the email.
transportWeb.DeliverAsync(myMessage);
+// If your developing a Console Application, use the following
+// transportWeb.DeliverAsync(myMessage).Wait();
```
#How to: Add an Attachment