Personalization (メール送信)
メール送信API
必要なパラメータはJSONで渡す
1リクエストでの⼤大量量送信
差し込み
カテゴリ分け
識識別⽤用ID付与
各種機能のOn/Off切切替
{
"from": {"email": "[email protected]"},
"personalization": [{
"to": [{"email": "[email protected]"}],
"substitutions": {
"%name%": "John"
},
"subject": "Hello John"
}, {
"to": [{"email": "[email protected]"}],
"substitutions": {
"%name%": "Steve"
},
"subject": "Hello Steve"
}],
"content": [{
"type": "text/plain",
"value": "Hello %name%"
}, {
"type": "text/html",
"value": "Hello %name%"
}]
}