diff options
Diffstat (limited to 'SendGrid/Example/Program.cs')
-rwxr-xr-x | SendGrid/Example/Program.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs index c1815b7..a429510 100755 --- a/SendGrid/Example/Program.cs +++ b/SendGrid/Example/Program.cs @@ -19,14 +19,14 @@ namespace Example var from = "cj.buchmann@sendgrid.com";
var to = new List<String>
{
- "cj.buchmann@sendgrid.com"
+ "foo@bar.com"
};
//initialize the SMTPAPI example class
var smtpapi = new SMTPAPI(username, password, from, to);
- var restapi = new RESTAPI(username, password, from, to);
+ var restapi = new WEBAPI(username, password, from, to);
- //use this section to test out our REST and SMTP examples!
+ //use this section to test out our Web and SMTP examples!
restapi.EnableTemplateEmail();
Console.WriteLine("Done!");
|