我正在寻找允许我使用SendGrid api发送电子邮件的代码。
答案 0 :(得分:-1)
以下是使用SendGrid发送电子邮件的简便方法。
import sendgrid
sg = sendgrid.SendGridClient('Username','Password')
message = sendgrid.Mail()
message.add_to("Email Address of Reciever")
message.set_from("Email Address of Sender")
message.set_subject("Email Subject")
message.set_html("Email html")
sg.send(message)
有关完整文档,请查看https://sendgrid.com/docs/Integrate/Code_Examples/python.html