need to add api to send emails

This commit is contained in:
2023-01-14 12:41:33 +01:00
parent 135c638ee3
commit 8e29c462fd
4 changed files with 64 additions and 35 deletions
+11 -35
View File
@@ -1,53 +1,29 @@
"""
Run:
"""
from mailjet_rest import Client
from src import config
from src.mail.mail_sender import MailSender
api_key = "489274f04d5c155f81370fccc3904e20"
api_secret = "edac41f0e1726ba49808dfb12204ecd6"
mailjet = Client(auth=(api_key, api_secret), version='v3.1')
from_email = "no-reply@lpaconsulting.fr"
# store = "Hermès Paris Faubourg"
store = "Hermès Paris George V"
store = "Hermès Paris Faubourg"
# store = "Hermès Paris George V"
# store = "Hermès Paris Sèvres"
# dest_email = "928490803@qq.com"
# dest_email = "1757344572@qq.com"
# dest_email = "392417782@qq.com"
# dest_email = "linghuili@hotmail.com"
dest_email = "panleicim@gmail.com"
# dest_email = "fanfan19810617@icloud.com"
# dest_email = "fanchunying323@163.com"
# dest_email = "lytlaure@gmail.com"
dest_email = "arianezhangsn@yahoo.com"
# dest_email = "arianezhangsn@yahoo.com"
# dest_email = "tranthu.ht1983@gmail.com"
# dest_email = "124652097@qq.com"
# dest_email = "sunrose75015@gmail.com"
# dest_email = "1340219934@qq.com"
# dest_email = "1340219934@qq.com" #小于
# dest_email = "lytlaure@gmail.com"
# dest_email = "m13805869912@163.com"
# dest_email = "tangliang0411@gmail.com"
contact_name = "LU yaping"
contact_name = "YUAN Jinxuan"
f = open(config.ROOT_DIR + "/templates/confirmed_rdv.html", "r")
email_body = f.read()
print(email_body)
data = {
'Messages': [
{
"From": {
"Email": from_email,
"Name": store
},
"To": [
{
"Email": dest_email,
"Name": contact_name
}
],
"Subject": "Your appointment is confirmed!",
"HTMLPart": email_body
}
]
}
result = mailjet.send.create(data=data)
print(result.status_code)
print(result.json())
sender = MailSender(dest_email=dest_email, email_body=email_body, store=store, contact_name=contact_name)
print(sender.send().json)