Skip to content

クーポン通知テンプレート

受信者ごとにパーソナライズされた期間限定クーポンを配信する、シングルバブル構成の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 }} を含めるのが一般的です。

ギャラリーに戻る

← Flex Messageテンプレート一覧