diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-18 13:55:29 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-07-18 13:55:29 -0700 |
commit | 37d469751aa68a9dde800a9ea90c1301ec02177e (patch) | |
tree | e8124553b37701210a09efd7ce3dd35c841a968a /examples/scopes | |
parent | dbc798284527e3256d7cc57ab2e5d8e8cea58e8e (diff) | |
download | sendgrid-csharp-37d469751aa68a9dde800a9ea90c1301ec02177e.zip sendgrid-csharp-37d469751aa68a9dde800a9ea90c1301ec02177e.tar.gz sendgrid-csharp-37d469751aa68a9dde800a9ea90c1301ec02177e.tar.bz2 |
Updated examples and Usage
Diffstat (limited to 'examples/scopes')
-rw-r--r-- | examples/scopes/scopes.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/scopes/scopes.cs b/examples/scopes/scopes.cs index 53d8bd5..6b6b5e3 100644 --- a/examples/scopes/scopes.cs +++ b/examples/scopes/scopes.cs @@ -1,5 +1,6 @@ using System; using SendGrid.Helpers.Mail; // If you are using the Mail Helper +using Newtonsoft.Json; // You can generate your JSON string yourelf or with another library if you prefer string _apiKey = Environment.GetEnvironmentVariable("SENDGRID_APIKEY", EnvironmentVariableTarget.User); dynamic sg = new SendGrid.SendGridAPIClient(_apiKey); |