sendmail.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. from flask import Flask, request
  2. from flask_mail import Message, Mail
  3. mail = Mail()
  4. app = Flask(__name__, instance_relative_config=True)
  5. app.config.from_mapping(
  6. MAIL_SERVER='mail.promocollection.com.au',
  7. MAIL_PORT=465,
  8. MAIL_USERNAME='info@promocollection.com.au',
  9. MAIL_PASSWORD='&rA4v((=?a+6',
  10. MAIL_USE_SSL=True,
  11. )
  12. mail.init_app(app)
  13. @app.route('/')
  14. def main():
  15. return 'ok'
  16. @app.route('/sendmail', methods=['GET'])
  17. def sendmail():
  18. if request.method == 'GET':
  19. code = request.args.get('code')
  20. if code == 'newregister':
  21. html = request.args.get('html', '')
  22. subject = request.args.get('subject', '')
  23. to = request.args.get('to', '')
  24. if html == '' or subject == '' or to == '':
  25. return 'failed'
  26. else:
  27. subject = 'Supplier Code Update'
  28. to = 'finance@promocollection.com.au'
  29. ori = request.args.get('ori', '')
  30. new = request.args.get('new', '')
  31. html = """
  32. <p>Product Code: %s</p>
  33. <p>Original Supplier Code: %s</p>
  34. <p><p>New Supplier Code: %s</p>
  35. """ % (code, ori, new)
  36. if ori == '' or new == '' or code == '':
  37. return 'failed'
  38. try:
  39. msg = Message(subject=subject, sender='info@promocollection.com.au', recipients=[to], html=html)
  40. mail.send(msg)
  41. return 'success'
  42. except Exception as e:
  43. print(e)
  44. return 'failed'