Your Name 3 years ago
parent
commit
54c0bb9567
1 changed files with 4 additions and 33 deletions
  1. 4 33
      step_question/apis/main.py

+ 4 - 33
step_question/apis/main.py

@@ -17,6 +17,7 @@ import os
 from email.mime.text import MIMEText
 from email.mime.image import MIMEImage
 from email.mime.multipart import MIMEMultipart
+import requests
 
 app = FastAPI()
 app.add_middleware(
@@ -38,39 +39,9 @@ def get_db():
 
 
 def mail_to_user(umail):
-    print('mail_to_user')
-    gmail_user = 'edm@choozmo.com'
-    gmail_password='wqdsyqwvppmubitv'
-    sent_from = gmail_user
-    to = [umail]
-    img_data=None
-    with open('/tmp/coupon.png', 'rb') as f:
-        img_data = f.read()
-
-    msg = MIMEMultipart()
-    msg['Subject'] = '幸福空間五萬裝修折價券'
-    msg['From'] = 'edm@choozmo.com'
-    msg['To'] = 'jeweiliang@gmail.com'
-    print('MIMEMultipart')
-
-    text = MIMEText("感謝您填寫問卷,敬送您五萬元裝修折價券。")
-    msg.attach(text)
-    image = MIMEImage(img_data, name=os.path.basename("c:/tmp/coupon.png"))
-    msg.attach(image)
-
-    try:
-        print('begin...')
-
-        server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
-        server.ehlo()
-        server.login(gmail_user, gmail_password)
-        server.sendmail(sent_from, to,  msg.as_string())
-        server.close()
-
-        print ('Email sent!')
-    except:
-        traceback.print_exc()
-        print ('Something went wrong...')
+    r = requests.get('http://3.220.159.187:8081/mailto/'+umail)
+    print(r.text)
+#    umail