Re: [web2py] How to automatically send emails to users if they perform an action like sign up...

2014-11-13 Thread Alex Glaros
@Bruno, regarding try to not use gmail for more than 500 recipients., what other companies or ways are there to get past 500 recipients? thanks Alex Glaros -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

Re: [web2py] How to automatically send emails to users if they perform an action like sign up...

2014-11-12 Thread Yebach
My login settings such as auth.settings.registration_requires_verification = True auth.settings.registration_requires_approval = False auth.settings.reset_password_requires_verification = True are not working Any idea why? On Monday, January 21, 2013 2:26:31 PM UTC+1, rochacbruno wrote:

Re: [web2py] How to automatically send emails to users if they perform an action like sign up...

2014-11-12 Thread Dave S
On Wednesday, November 12, 2014 1:41:55 AM UTC-8, Yebach wrote: My login settings such as auth.settings.registration_requires_verification = True auth.settings.registration_requires_approval = False auth.settings.reset_password_requires_verification = True are not working Any idea

Re: [web2py] How to automatically send emails to users if they perform an action like sign up...

2014-11-12 Thread Dave S
On Wednesday, November 12, 2014 2:25:49 PM UTC-8, Dave S wrote: On Wednesday, November 12, 2014 1:41:55 AM UTC-8, Yebach wrote: My login settings such as auth.settings.registration_requires_verification = True auth.settings.registration_requires_approval = False

[web2py] How to automatically send emails to users if they perform an action like sign up...

2013-01-21 Thread sasogeek
I want to know how to send emails to users automatically based on their actions... specifically things like an email verification (for validation), notifications for updates and similar actions... --

Re: [web2py] How to automatically send emails to users if they perform an action like sign up...

2013-01-21 Thread Bruno Rocha
in your models. mail = auth.settings.mailer mail.settings.server = your_smtp_server_and:port mail.settings.sender = y...@you.com mail.settings.login = y...@you.com:password # sends an verification e-mail upon registration auth.settings.registration_requires_verification = True def