SendGrid not working in Google app engine endpoints
问题 I need to send info to the google endpoint, which then sets up object with Sendgrid and then sends the email. The emails are not working, nothing is sent through from the app engine. Part of my endpoint code: @ApiMethod(name = "sendEmail") public sendEmailObject sendEmail(@Named("sendTo") String sendTo, @Named("sentFromClient") String sentFromClient, @Named("sendDescription") String sendDescription) { SendGrid sendgrid = new SendGrid(..., ...); SendGrid.Email email = new SendGrid.Email();