我正在玩python mailjet api,发现我可以设置发件人的姓名,这样我就可以让它们从“Carlos”中显示,而不是从“Info”(info@example.com)显示电子邮件。我还想添加一张像西南航空公司或 Twitter 这样的头像。
有人知道我该怎么做吗?
我知道如果我不发布代码,人们就会生气,所以这里有一些代码:
mailjet = Client(auth=(API_KEY, API_PASSWORD), version='v3.1')
data = {
'Messages': [
{
"From": {
"Email": "info@example.com",
"Name": "Carlos"
},
"To": [
{
"Email": trip.email
}
],
"Subject": "Subject of the message",
"TextPart":"This is the body of the message",
"Headers": {
"X-My-Header": "https://www.example.com/profile_pic.png"
}
}
]
}
mailjet.send.create(data=data)