如何使用带有 Python 的 SendGrid 发送电子邮件
How to Send Emails Using SendGrid with Python
我正在寻找允许我使用 SendGrid 发送电子邮件的代码 api。
这是使用 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
我正在寻找允许我使用 SendGrid 发送电子邮件的代码 api。
这是使用 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