如何使用SendGrid和Python发送电子邮件

时间:2015-07-12 19:12:32

标签: python python-2.7 sendgrid

我正在寻找允许我使用SendGrid api发送电子邮件的代码。

1 个答案:

答案 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