我想使用“SendInBlue”发送交易和营销电子邮件。我也想用 Python 语言来做同样的事情。我访问了 SendInBlue 的 API 文档并遵循相同的程序,仍然无法发送电子邮件。
from mailin import Mailin
m = Mailin("https://api.sendinblue.com/v2.0","ScrWGqd296ya0CWq")
data = { "to" : {"aman@gmail.com":"to whom!"},
"from" : ["amandeep@gmail.com", "from email!"],
"subject" : "Subject...",
"html" : "This is the <h1>HTML</h1>",
"attachment" : ["https://example.com/path-to-file/filename1.pdf", "https://example.com/path-to-file/filename2.jpg"]
}
result = m.send_email(data)
print(result)
我还从 github 下载了 mailin-api-python 并运行了这个脚本。我不知道在哪里设置我的 smtp 详细信息。
**出于安全目的,我更改了 API 密钥。