我无法使用网络API在Sendgrid上发送“安全”电子邮件。 (平台 - .Net / C#,SendgridMail)
它适用于http url(http://sendgrid.com/api/mail.send),但使用https(https://sendgrid.com/api/mail.send)则失败。
private void SendMail()
{
var message = SendGrid.GenerateInstance();
//set the message recipients
message.AddTo("to@sonedomain.com1");
//set the sender
message.From = new MailAddress("from@somedomain.com1");
//set the message body
message.Html = "<html><p>Hello</p><p>World</p></html>";
//set the message subject
message.Subject = "Hello World HTML Test";
//create an instance of the Web transport mechanism
var transportInstance = SendGridMail.Transport.REST.GetInstance(new NetworkCredential("myusername", "mypassword"),"https://sendgrid.com/api/mail.send");
//send the mail
transportInstance.Deliver(message);
}
我收到一个ArgumentException:Unknown element:html。
进一步深入挖掘代码,我收到此错误:“400 Bad Request,普通HTTP请求被发送到HTTPS端口,nginx / 0.7.65”
注意
它适用于上面的GetInstance函数中的 http url ie:(http://sendgrid.com/api/mail.send)而不是(https://sendgrid.com/api/mail.send )。
通过浏览器发送电子邮件请求正常: (https://sendgrid.com/api/mail.send.json?to=to%40somedomain.com1&from=from%40somdomain.com1&subject=Test%20SG%20API&text=sometext&html=%3Cb% 3E%20test%20SG%20api%20body&安培; api_user = sendgridusername&安培; API_KEY = sendgridpassword)
对此有所帮助。
答案 0 :(得分:4)
我为SendGrid工作。我做了一些测试,这是C#包装器的限制,特别是用于进行HTTP调用的CodeScales库。遗憾的是,CodeScales根本不支持HTTPS。我在GitHub上打开了一个问题:https://github.com/sendgrid/sendgrid-csharp/issues/21
我将开始计划重构应用程序以使用RestSharp进行API调用。对不起,对不起!