diff options
| author | Santo Cariotti <dcariotti24@gmail.com> | 2020-04-09 19:33:05 +0000 |
|---|---|---|
| committer | Santo Cariotti <dcariotti24@gmail.com> | 2020-04-09 19:33:05 +0000 |
| commit | f7b57c931b19d72a1ce4527b2467fb65fd5df177 (patch) | |
| tree | a9dc81228b74c0d1e47bf20925865411ee098126 /frest/templates/mail.txt | |
| parent | 0e6fec8d4e5eaf2c72a51e2f2ddcab536c693313 (diff) | |
freat: create templates files
Diffstat (limited to 'frest/templates/mail.txt')
| -rw-r--r-- | frest/templates/mail.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/frest/templates/mail.txt b/frest/templates/mail.txt new file mode 100644 index 0000000..e553525 --- /dev/null +++ b/frest/templates/mail.txt @@ -0,0 +1,11 @@ +from flask_mail import Mail + +mail = Mail() +config = { + "SERVER": "", + "PORT": 587, + "USE_TLS": True, + "USERNAME": "", + "DEFAULT_SENDER": "", + "PASSWORD": "", +} |
