Guest User

Untitled

a guest
Feb 14th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. app.config["DEBUG"] = True
  2. app.config["TESTING"] = False
  3. app.config["MAIL_SERVER"] = 'smtp.gmail.com'
  4. app.config["MAIL_PORT"] = 587
  5. app.config["MAIL_USE_SSL"] = False
  6. app.config["MAIL_USE_TLS"] = True
  7. app.config["MAIL_USERNAME"] = 'mattpythonapp@gmail.com'
  8. app.config["MAIL_PASSWORD"] = 'password'
  9. app.config["MAIL_DEFAULT_SENDER"] = 'mattpythonapp@gmail.com'
  10. app.config["SECURITY_EMAIL_SENDER"] = 'mattpythonapp@gmail.com'
  11. mail.init_app(app)
  12.  
  13. @app.route('/contact', methods=['GET', 'POST'])
  14. def contact2():
  15. msg = Message('Hey There', recipients=['mattpythonapp@yahoo.com'])
  16. mail.send(msg)
Add Comment
Please, Sign In to add comment