diff options
-rw-r--r-- | SendGrid/SendGridMail/Transport/Web.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SendGrid/SendGridMail/Transport/Web.cs b/SendGrid/SendGridMail/Transport/Web.cs index 81e7c72..e08a5a2 100644 --- a/SendGrid/SendGridMail/Transport/Web.cs +++ b/SendGrid/SendGridMail/Transport/Web.cs @@ -57,7 +57,7 @@ namespace SendGrid var content = new MultipartFormDataContent();
AttachFormParams(message, content);
AttachFiles(message, content);
- var response = await _client.PostAsync(Endpoint + ".xml", content);
+ var response = await _client.PostAsync(Endpoint, content);
await ErrorChecker.CheckForErrorsAsync(response);
}
|