受信者ごとにパーソナライズされた期間限定クーポンを配信する、シングルバブル構成のFlex Messageテンプレートです。
カテゴリ: プロモーション
クーポン通知
ヒーロー画像・パーソナライズド挨拶・クーポンコード・CTAボタンを含むシングルバブルのプロモメッセージ。Liquidパーソナライズの例を含みます。
プレビュー
JSONテンプレート
{
"type": "bubble",
"hero": {
"type": "image",
"url": "https://example.com/images/coupon-hero.jpg",
"size": "full",
"aspectRatio": "20:13",
"aspectMode": "cover"
},
"body": {
"type": "box",
"layout": "vertical",
"contents": [
{
"type": "text",
"text": "20% OFF Coupon",
"weight": "bold",
"size": "xl"
},
{
"type": "text",
"text": "Hi {{ profile.first_name }}, enjoy 20% off your next purchase. Valid until {{ campaign.expires_on }}.",
"wrap": true,
"margin": "md",
"size": "sm",
"color": "#666666"
},
{
"type": "box",
"layout": "baseline",
"margin": "lg",
"contents": [
{
"type": "text",
"text": "Code",
"size": "sm",
"color": "#aaaaaa",
"flex": 1
},
{
"type": "text",
"text": "{{ profile.coupon_code }}",
"size": "sm",
"color": "#111111",
"weight": "bold",
"flex": 4
}
]
}
]
},
"footer": {
"type": "box",
"layout": "vertical",
"spacing": "sm",
"contents": [
{
"type": "button",
"style": "primary",
"color": "#00B900",
"action": {
"type": "uri",
"label": "Shop Now",
"uri": "https://example.com/shop?uid={{ profile.user_id }}"
}
}
]
}
}- 週次・季節のプロモーションキャンペーン
- セグメントを絞ったロイヤリティ特典配信
- 休眠顧客への再エンゲージメントオファー
| フィールド | カスタマイズ方法 |
|---|---|
hero.url | キャンペーン画像を公開HTTPSホスト (CDNなど) に配置し、URLを差し替えます。アスペクト比は20:13が推奨です。 |
body.contents[0].text | 見出し (20% OFF Coupon) を自社オファーに書き換えます。 |
body.contents[1].text | プロファイルスキーマのLiquid変数で本文をパーソナライズします。配信時に展開されます。 |
body.contents[2].contents[1].text | クーポンコードをプロファイル属性 (例: {{ profile.coupon_code }}) にバインドします。 |
footer.contents[0].action.uri | ランディングページのURLを指定します。計測用に {{ profile.user_id }} を含めるのが一般的です。 |