Python

SendGrid Pythonライブラリの利用を推奨します。ライブラリのドキュメントについてはGithubを参照してください。

このライブラリはV2 APIをサポートしませんが、旧バージョンのライブラリを利用することでV2 APIを利用可能です。詳細については Continue Using V2 in Pythonを参照してください。

SendGrid Pythonライブラリの利用

1
2
3
4
5
6
7
8
9
10
11
12
13
# using SendGrid's Python Library
# https://github.com/sendgrid/sendgrid-python
import sendgrid

client = sendgrid.SendGridClient("SENDGRID_APIKEY")
message = sendgrid.Mail()

message.add_to("test@sendgrid.com")
message.set_from("you@youremail.com")
message.set_subject("Sending with SendGrid is Fun")
message.set_html("and easy to do anywhere, even with Python")

client.send(message)