言語別 SDK
Python
Python から Sendery の公開済みテンプレートを送信します。
インストール
pip install sendery動作環境
Python 3.10 以上が必要です。
設定
name と action_url を使う welcome テンプレートを公開し、プロジェクトの API キーを作成します。サーバーの環境変数 SENDERY_API_KEY に保存してください。
Shell
export SENDERY_API_KEY="your_project_api_key"メールを送信
受付済みメールの id と status が返ります。 同期型のため、非同期コードからは asyncio.to_thread() で呼び出してください。
Python
import os
from sendery import Sendery
sendery = Sendery(os.environ["SENDERY_API_KEY"])
receipt = sendery.send(
to="[email protected]",
template="welcome",
data={"name": "Alex", "action_url": "https://example.com/start"},
)
print(receipt["id"])メールの状態を取得
返された ID で配信状態を確認します。
Python
message = sendery.get(receipt["id"])
print(message["status"])送信を再試行
welcome-123 などのキーを 1 通に割り当て、再試行時は元の内容を使います。retry(3) は一時的なエラーに対して最大 3 回の追加試行を行い、send() だけでは 1 回のみ試行します。
Python
email = sendery.prepare(
to="[email protected]",
template="welcome",
data={"name": "Alex", "action_url": "https://example.com/start"},
idempotency_key="welcome-123",
)
receipt = email.retry(3).send()エラー処理
Python
from sendery import SenderyError
try:
receipt = email.retry(3).send()
except SenderyError as error:
print(error.status, error.code, error.errors)
# error.retry_after is a delay in seconds, when provided.
raise