Skip to content

Commit 4d7497b

Browse files
committed
Fix endpoint URL
1 parent 0777f8b commit 4d7497b

File tree

1 file changed

+1
-1
lines changed
  • SendGrid/SendGridMail/Transport

1 file changed

+1
-1
lines changed

SendGrid/SendGridMail/Transport/Web.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public async Task DeliverAsync(ISendGrid message)
5757
var content = new MultipartFormDataContent();
5858
AttachFormParams(message, content);
5959
AttachFiles(message, content);
60-
var response = await _client.PostAsync(Endpoint + ".xml", content);
60+
var response = await _client.PostAsync(Endpoint, content);
6161
await ErrorChecker.CheckForErrorsAsync(response);
6262
}
6363

0 commit comments

Comments
 (0)