mail.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import dataset
  2. import smtplib
  3. from email.mime.multipart import MIMEMultipart # email內容載體
  4. from email.mime.text import MIMEText # 用於製作文字內文
  5. from email.mime.base import MIMEBase # 用於承載附檔
  6. from email import encoders # 用於附檔編碼
  7. import datetime
  8. import ssl
  9. def get_db(db_name, table_name):
  10. db = dataset.connect(f'mysql://choozmo:pAssw0rd@db.ptt.cx:3306/{db_name}?charset=utf8mb4')
  11. user_table = db[table_name]
  12. return user_table
  13. def mail_to_users(user_id: int, subject: str, contents: str):
  14. """
  15. 1. 透過id查詢DB, 找出使用者email、username
  16. 2. 訊息制定(如: Aaron, 您的影片於2021/7/12 14:00 "ChoozMo測試影片" 完成了,請前往官網: "url")下載。
  17. 3. 傳送。
  18. - 根據server不同,可以區分。
  19. - 先用Gmail。(可以動就好)
  20. """
  21. # 連線DB得到使用者郵件、姓名
  22. db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/AI_anchor?charset=utf8mb4')
  23. rows = db.query(f'SELECT * FROM users WHERE id={user_id}')
  24. for row in rows:
  25. email = row['email']
  26. name = row['username']
  27. print(name, email)
  28. # 寄件者使用的Gmail帳戶資訊
  29. time_now = datetime.datetime.utcnow() + datetime.timedelta(hours=8)
  30. with open('password.txt') as f:
  31. gmail_user, gmail_password = f.readlines()
  32. # gmail_user = 'aaron@choozmo.com'
  33. # gmail_password = 'Choozmo1015'
  34. from_address = gmail_user
  35. # 設定信件內容與收件人資訊
  36. to_address = email if type(email) == type([]) else [email]
  37. # 開始組合信件內容
  38. mail = MIMEMultipart()
  39. mail['From'] = from_address
  40. mail['To'] = ', '.join(to_address)
  41. mail['Subject'] = subject
  42. # 將信件內文加到email中
  43. mail.attach(MIMEText(contents))
  44. print(to_address)
  45. # 設定smtp伺服器並寄發信件
  46. smtpserver = smtplib.SMTP_SSL("smtp.gmail.com", 465)
  47. smtpserver.ehlo()
  48. smtpserver.login(gmail_user, gmail_password)
  49. smtpserver.sendmail(from_address, to_address, mail.as_string())
  50. smtpserver.quit()
  51. if __name__ == '__main__':
  52. mail_to_users(4, 'subject', 'contents')