[appengine-java] Re: Java Mail Service

2010-04-08 Thread KarthikR
Hi I am not sure why the low-level API isn't working (or why the low- level api is using a high amount of CPU). As to your original question, can you take a look at http://code.google.com/p/googleappengine/issues/detail?id=1631 Also from

[appengine-java] Re: Java Mail Service

2010-04-07 Thread moissinac
Tried the following code MailService ms = MailServiceFactory.getMailService(); MailService.Message msg = new MailService.Message(); msg.setSubject(Tu as réussi cette étape); ms.sendToAdmins(msg); without more result. The code is executed in

[appengine-java] Re: Java Mail Service

2010-04-07 Thread moissinac
A trace on the code shows me that the line in the previous code ms.sendToAdmins(msg); fails So, my hypothesis is that a prerequisite is not fulfilled In the code, I use the Low Level API, which doesn't need a specific configuration (I believe it) In the log, I see 2585cpu_ms with a

[appengine-java] Re: Java Mail Service

2010-04-02 Thread KarthikR
Hi The java API javadoc at http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/mail/MailService.html provides send() and sendToAdmins() methods, Can you try using sendToAdmins() ? Regards, KarthikR On Apr 1, 7:17 am, moissinac jcmoissi...@gmail.com wrote: Hello I have