Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1.  
  2. @app.route('/visitorNotification/')
  3. def visitorEmail():
  4. msg = Message(
  5. 'Atmiya: We have recieved your details!',
  6. sender='teamRocket299@gmail.com',
  7. recipients=
  8. ['oj2008@live.com.au'])
  9. msg.body = "Thank you for submitting a vistor form. We will be contacting you soon."
  10. mail.send(msg)
  11.  
  12. return jsonify(status="TRUE")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement