From 6553601e189af6f110f5363741c5d8717746983d Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 20 Mar 2020 10:12:12 +0100 Subject: chore: mail config --- frest/mail.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 frest/mail.py 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": "", +} -- cgit v1.2.3-18-g5258