We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0777f8b commit 4d7497bCopy full SHA for 4d7497b
SendGrid/SendGridMail/Transport/Web.cs
@@ -57,7 +57,7 @@ public async Task DeliverAsync(ISendGrid message)
57
var content = new MultipartFormDataContent();
58
AttachFormParams(message, content);
59
AttachFiles(message, content);
60
- var response = await _client.PostAsync(Endpoint + ".xml", content);
+ var response = await _client.PostAsync(Endpoint, content);
61
await ErrorChecker.CheckForErrorsAsync(response);
62
}
63
0 commit comments