summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/SendGrid.cs
diff options
context:
space:
mode:
authorTyler Bischel <tyler.bischel@sendgrid.com>2012-01-24 14:57:47 -0800
committerTyler Bischel <tyler.bischel@sendgrid.com>2012-01-24 14:57:47 -0800
commit1be4549531d73cf89b4bebd2dac003937a1661df (patch)
tree0e2f7611e7df1fd92cdb3cd573ece56c6a846e06 /SendGrid/SendGridMail/SendGrid.cs
parentcc9ec168b75ef7ac492996c7d24eeb1177b02476 (diff)
downloadsendgrid-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-xSendGrid/SendGridMail/SendGrid.cs4
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");