diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 14:57:47 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 14:57:47 -0800 |
commit | 1be4549531d73cf89b4bebd2dac003937a1661df (patch) | |
tree | 0e2f7611e7df1fd92cdb3cd573ece56c6a846e06 /SendGrid/SendGridMail/SendGrid.cs | |
parent | cc9ec168b75ef7ac492996c7d24eeb1177b02476 (diff) | |
download | sendgrid-csharp-1be4549531d73cf89b4bebd2dac003937a1661df.zip sendgrid-csharp-1be4549531d73cf89b4bebd2dac003937a1661df.tar.gz sendgrid-csharp-1be4549531d73cf89b4bebd2dac003937a1661df.tar.bz2 |
renamed REST transport to Web
Diffstat (limited to 'SendGrid/SendGridMail/SendGrid.cs')
-rwxr-xr-x | SendGrid/SendGridMail/SendGrid.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index 59d7976..108c930 100755 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -41,7 +41,7 @@ namespace SendGridMail /// </summary>
/// <param name="from">The email address of the sender</param>
/// <param name="to">An array of the recipients</param>
- /// <param name="cc">Supported over SMTP, with future plans for support in the REST transport</param>
+ /// <param name="cc">Supported over SMTP, with future plans for support in the Web transport</param>
/// <param name="bcc">Blind recipients</param>
/// <param name="subject">The subject of the message</param>
/// <param name="html">the html content for the message</param>
@@ -531,7 +531,7 @@ namespace SendGridMail transport = SMTP.GetInstance(credentials);
break;
case TransportType.REST:
- transport = REST.GetInstance(credentials);
+ transport = Web.GetInstance(credentials);
break;
default:
throw new ArgumentException("Transport method not specified");
|