[web2py] Re: Does mail work in GoogleAppEngine

2010-05-01 Thread Leandro - ProfessionalIT
Master Massimo, Perfect !, you are right !. Follow the correct configuration to solve this(my) problem(sent mail) in this situation: app deployed in GAE and domain managed by Google Apps: in db.py mail=Mail() mail.settings.server='gae' mail.settings.sender='yourMailAcc

[web2py] Re: Does mail work in GoogleAppEngine

2010-05-01 Thread mdipierro
I use this without problem. Are you using the same sender email address associated with you gae account? On May 1, 12:34 pm, Leandro - ProfessionalIT wrote: > Hello Friends, > >    Sorry to re-open the topic, but as my problem is relative > >    Well, I have my app deployed in GAE and I'm usi

[web2py] Re: Does mail work in GoogleAppEngine

2010-05-01 Thread Leandro - ProfessionalIT
Hello Friends, Sorry to re-open the topic, but as my problem is relative Well, I have my app deployed in GAE and I'm using the Google Apps Standard to manage my domain. Follow my configurations: In db.py: mail=Mail() mail.settings.server='gae' mail.settings.sender='adminis

[web2py] Re: Does mail work in GoogleAppEngine

2010-04-16 Thread Matt
I'm using the following to send mail on GAE. In your controller. def do_something(): # send email example mail=Mail() mail.settings.server='gae' mail.settings.sender = 'per...@yourdomain.com' mail.send(to=['recipi...@website.com'], cc=['someb...@else.com'],

[web2py] Re: Does mail work in GoogleAppEngine

2010-04-16 Thread mdipierro
The gluon.tools.Mail class is designed to work on GAE. If you use it wiah a gmail account make sure the settings are correct. The username has to be the complete email address and the sender has to be the same email address you use to login. Massimo On Apr 16, 4:01 pm, Felix wrote: > I am trying