on commad line or using python shell
This code works find and I can get email
from gluon.tools import Mail
# now we want to send email
mail = Mail()
mail.settings.server = 'smtp.gmail.com:587'
mail.settings.sender = 'v...@gmail.com'
mail.settings.login = 'v...@gmail.com:pass'
mail.send()
But i
Hi,
I redefined auth.register with some "extra_fields" as the email
field for example.
But now I have a "Target receiver address not specified" because
I guess that the db.auth_user.email remains empty.
I'd like to ask if I have to redefine mail.send to make it works
or is there a simpler way to
2 matches
Mail list logo