Reputation: 587
I am using same example as given 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;
}
}
I can even see response code as response.getStatusCode() ------------------- 202
But still I dont get any emails. Any more configuration needs to be done on sendgrid
side which I may be missing?
Upvotes: 1
Views: 3334
Reputation: 16549
I'm getting mails.
The steps I followed to get the mail are as follows :
I signed up for SendGrid.
Steps :
Note : Implement the code given and run it. It gives no error. Then, do this :
Then, click on the button Next:Verify Integration.
Then, it will show this :
Output :
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}
Upvotes: 1