Re: [google-appengine] Re: GAE Web app sending mail using SendGrid

2018-09-07 Thread Rashmi S
I have solved the problem. I had to use Urlfetch configuration in appengine-web.xml and use URLFetch class instead of HttpURLConnection. It works now. Thanks for the help! On Saturday, August 25, 2018 at 1:08:16 AM UTC+5:30, George (Cloud Platform Support) wrote: > > If you would like us to

Re: [google-appengine] Re: GAE Web app sending mail using SendGrid

2018-08-24 Thread Rashmi S
Yes, I did. On Fri, Aug 24, 2018 at 12:34 AM 'George (Cloud Platform Support)' via Google App Engine wrote: > Have you followed each and every step listed in "Preparing the > application" sub-chapter > > of

[google-appengine] Re: GAE Web app sending mail using SendGrid

2018-08-20 Thread Rashmi S
Just want to confirm, is updation of billing account necessary even for free trial versions of sendgrid or mailjef. Will it not work without payment details? And could it be possible that these services, even recaptcha is failing with an IOexception or server error?...with reference to this

[google-appengine] DeadLineExceededError, IOExceptions

2018-08-15 Thread Rashmi S
Found this in the log file: This request caused a new process to be started for your application, and thus caused your application code to be loaded for the first time. This request may thus take longer and use more CPU than a typical request for your application. What does this mean? My

[google-appengine] IOExceptions no matter what on deploying to appspot

2018-08-15 Thread Rashmi S
I've been working on a GAE project(Spring MVC based) which works perfectly in eclipse, localhost. I'm using google's recaptcha on subscribe form. I also use SendGrid's service-free version- for sending mail. The point is the code works perfectly in eclipse but fails with IOException on

[google-appengine] Re: GAE Web app sending mail using SendGrid

2018-08-14 Thread Rashmi S
Hi George, thanks for the reply! My project is a spring MVC project. I'm using a trial version of Sendgrid. I haven't updated my billing details(could this be a reason for failure). Here's the relevant code snippet : Method 1: public static boolean sendEmail(String emailId) { Sendgrid mail

[google-appengine] Re: GAE Web app sending mail using SendGrid

2018-08-14 Thread Rashmi S
Hi George, thanks for the reply! My project is a spring MVC project. I'm using a trial version of Sendgrid. I haven't updated my billing details(could this be a reason for failure). Here's the relevant code snippet : Method 1: public static boolean sendEmail(String emailId) { Sendgrid mail

[google-appengine] Re: GAE Web app sending mail using SendGrid

2018-08-14 Thread Rashmi S
Yes, authentication works well. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to this group, send

[google-appengine] GAE Web app sending mail using SendGrid

2018-08-14 Thread Rashmi S
Trying to send mails using Sendgrid in my gae project. I referred to these docs https://cloud.google.com/appengine/docs/standard/java/mail/sendgrid It works perfectly in the localhost. But on deploying to app engine standard, it works only once, that is, I'm able to send an email only once.