I am beginner with web2py. I have just created a new project.
I want to use a gmail address, let's say g@gmail.com. What do I need to modify ?
mail.settings.server = 'logging' or 'smtp.gmail.com:587' # your SMTP server
mail.settings.sender = 'g@gmail.com' # your email
mail.settings.login = 'g@gmail.com:mypassword' # your credentials or None
Is this OK ?
What is the purpose of 'logging'
?