summaryrefslogtreecommitdiff
path: root/src/frest/mail.py
blob: e5535253c03630e48931c377bcd958d6d1d1be8f (plain)
1
2
3
4
5
6
7
8
9
10
11
from flask_mail import Mail

mail = Mail()
config = {
    "SERVER": "",
    "PORT": 587,
    "USE_TLS": True,
    "USERNAME": "",
    "DEFAULT_SENDER": "",
    "PASSWORD": "",
}