SendGrid 不使用 API 文档中的示例发送电子邮件
SendGrid sending not Emails using API Example in documentation
我使用的示例与文档中给出的示例相同:
public static void main(String[] args) throws Exception {
Email from = new Email("****@gmail.com");
String subject = "Sending with SendGrid is Fun";
Email to = new Email("****@gmail.com");
Content content = new Content("text/plain", "and easy to do anywhere, even with Java");
Mail mail = new Mail(from, subject, to, content);
SendGrid sg = new SendGrid("API KEY");
Request request = new Request();
try {
request.setMethod(Method.POST);
request.setEndpoint("mail/send");
request.setBody(mail.build());
Response response = sg.api(request);
System.out.println("response.getStatusCode() ------------------- "+response.getStatusCode());
System.out.println("response.getBody() -------- "+response.getBody());
System.out.println("response.getHeaders() -------- "+response.getHeaders());
} catch (IOException ex) {
throw ex;
}
}
我什至可以看到响应代码 response.getStatusCode() ------------------- 202
但我仍然没有收到任何电子邮件。在 sendgrid
方面还需要进行我可能遗漏的配置吗?
我正在收到邮件。
我收到邮件的步骤如下:
我注册了 SendGrid。
步骤:
- 转到仪表板 select "Integrate using our Web API or SMTP relay"
- Select 网页 API 选项。
- Select 您想要集成的编程语言。这里,select Java.
- 输入一个 API 密钥名称,然后单击创建密钥为其生成随机值。
- 在同一页面往下生成密钥,点击复选框"I've integrated the above code."
注意:实现给定的代码并运行它。它没有错误。然后,这样做:
然后,单击按钮 下一步:验证集成。
- 会登陆验证页面
- 单击验证集成按钮。如果成功。
然后,它会显示这个:
- 现在,代码:
输出:
response.getStatusCode() ------------------- 202
response.getBody() --------
response.getHeaders() -------- {Server=nginx, Access-Control-Allow-Origin=https://sendgrid.api-docs.io, Access-Control-Allow-Methods=POST, Connection=keep-alive, X-Message-Id=ZBe5wF5WQN-TD9P4X9QEJw, X-No-CORS-Reason=https://sendgrid.com/docs/Classroom/Basics/API/cors.html, Content-Length=0, Access-Control-Max-Age=600, Date=Sat, 21 Mar 2020 14:09:25 GMT, Access-Control-Allow-Headers=Authorization, Content-Type, On-behalf-of, x-sg-elas-acl}
- 邮箱:检查邮件的垃圾邮件文件夹。
我使用的示例与文档中给出的示例相同:
public static void main(String[] args) throws Exception {
Email from = new Email("****@gmail.com");
String subject = "Sending with SendGrid is Fun";
Email to = new Email("****@gmail.com");
Content content = new Content("text/plain", "and easy to do anywhere, even with Java");
Mail mail = new Mail(from, subject, to, content);
SendGrid sg = new SendGrid("API KEY");
Request request = new Request();
try {
request.setMethod(Method.POST);
request.setEndpoint("mail/send");
request.setBody(mail.build());
Response response = sg.api(request);
System.out.println("response.getStatusCode() ------------------- "+response.getStatusCode());
System.out.println("response.getBody() -------- "+response.getBody());
System.out.println("response.getHeaders() -------- "+response.getHeaders());
} catch (IOException ex) {
throw ex;
}
}
我什至可以看到响应代码 response.getStatusCode() ------------------- 202
但我仍然没有收到任何电子邮件。在 sendgrid
方面还需要进行我可能遗漏的配置吗?
我正在收到邮件。
我收到邮件的步骤如下:
我注册了 SendGrid。
步骤:
- 转到仪表板 select "Integrate using our Web API or SMTP relay"
- Select 网页 API 选项。
- Select 您想要集成的编程语言。这里,select Java.
- 输入一个 API 密钥名称,然后单击创建密钥为其生成随机值。
- 在同一页面往下生成密钥,点击复选框"I've integrated the above code."
注意:实现给定的代码并运行它。它没有错误。然后,这样做:
然后,单击按钮 下一步:验证集成。
- 会登陆验证页面
- 单击验证集成按钮。如果成功。
然后,它会显示这个:
- 现在,代码:
输出:
response.getStatusCode() ------------------- 202
response.getBody() --------
response.getHeaders() -------- {Server=nginx, Access-Control-Allow-Origin=https://sendgrid.api-docs.io, Access-Control-Allow-Methods=POST, Connection=keep-alive, X-Message-Id=ZBe5wF5WQN-TD9P4X9QEJw, X-No-CORS-Reason=https://sendgrid.com/docs/Classroom/Basics/API/cors.html, Content-Length=0, Access-Control-Max-Age=600, Date=Sat, 21 Mar 2020 14:09:25 GMT, Access-Control-Allow-Headers=Authorization, Content-Type, On-behalf-of, x-sg-elas-acl}
- 邮箱:检查邮件的垃圾邮件文件夹。