Welcome to the new Sesami Help Portal with AI capabilities. Search your question and get your answer instantly!
For the complete documentation index, see llms.txt. This page is also available as Markdown.

商品オプションを含めるようにShopifyの確認メールを編集する

デフォルトでは、Shopify の注文確認メールには予約日時などのラインアイテムのプロパティは表示されません。必要に応じて、これらの情報を含めるようにカスタマイズできます。

この変更で何が変わるか

この編集後、Shopify の注文確認メールには、商品情報とあわせて予約の詳細(日時、所要時間、その他のカスタムフィールド)が表示されます。

手順

  1. Shopify Adminで Shopify > 設定 > 通知

  2. をクリック 注文確認

  3. メールテンプレート内で次を検索します:

list__item-title
  1. 次のスニペットをその行の直下に挿入します:

{% assign property_size = line.properties | size %}
{% if property_size > 0 %}
<p>
  {% for p in line.properties %}
    {% if p.first contains "_options" %}
      {% continue %}
    {% endif %}
    {% unless p.last == blank %}
      <small>{{ p.first }}:</small>
      {% if p.last contains '/uploads/' %}
        <a target="_blank" href="{{ p.last }}"><small>リンク</small></a>
      {% else %}
        <small>{{ p.last }}</small>
      {% endif %}
      <br>
    {% endunless %}
  {% endfor %}
</p>
{% endif %}
  1. をクリック 保存

結果

編集後、注文確認メールには次のような予約情報が表示されます:

  • 日付: 2026年3月15日

  • 時間: 午前10:00

  • 所要時間: 60分

  • 予約時に取得された任意のカスタムフィールド

影響するのは Shopify の注文確認メールのみです。Sesami の確認メール自体には、デフォルトで予約詳細がすでに含まれています。

関連項目

最終更新

役に立ちましたか?