-
Notifications
You must be signed in to change notification settings - Fork 2
Activate email exchange feature
fan-droide edited this page Oct 24, 2025
·
10 revisions
Email exchange is used for login (by receiving an verification code) or sending invitations for new collaborators.
EMAIL_MODULE_ACTIVE = True # default is False
# For Mail settings go to Email provider and get the details:
MAIL_SERVER = ""
MAIL_PORT = 0
MAIL_USERNAME = ""EMAIL_PASSWD=*****1.- Turn on 2-Step Verification for your Google account.
2.- Create an App Password (choose a custom name → e.g., “Flask”). You’ll get a 16-character password.
https://myaccount.google.com/apppasswords
3.- Edit config.py with the following details:
MAIL_SERVER = "smtp.gmail.com"
MAIL_PORT = 587
MAIL_USERNAME = youremail@gmail.com4.- Edit .env with the password generated in the step 2.
EMAIL_PASSWD=****************