diff options
author | Santo Cariotti <dcariotti24@gmail.com> | 2020-03-20 10:12:12 +0100 |
---|---|---|
committer | Santo Cariotti <dcariotti24@gmail.com> | 2020-03-20 10:12:12 +0100 |
commit | 6553601e189af6f110f5363741c5d8717746983d (patch) | |
tree | 98cb651369e44c78b951c40d387b7611ef1d7411 | |
parent | 26d1731778602624ff5e5ef74d74d107faefed18 (diff) |
chore: mail config
-rw-r--r-- | frest/mail.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/frest/mail.py b/frest/mail.py new file mode 100644 index 0000000..e553525 --- /dev/null +++ b/frest/mail.py @@ -0,0 +1,11 @@ +from flask_mail import Mail + +mail = Mail() +config = { + "SERVER": "", + "PORT": 587, + "USE_TLS": True, + "USERNAME": "", + "DEFAULT_SENDER": "", + "PASSWORD": "", +} |