コピー用メールテンプレート追加コード 挿入場所の詳細はマニュアルをご覧ください。図で説明していますので分かりやすいです。 (1)設定>店舗設定>メール設定(ファイル名:order.html.twig) ============================== テンプレート:注文受付メール 本文:「HTML」タブをクリック ============================== 123行目付近に追加。(122行目付近の、
 の下に追加) ------------------------------------------ {% set Noshis = repository('Plugin\\Noshi\\Entity\\Noshi').getList %} {% set Config = repository('Plugin\\Noshi\\Entity\\NoshiConfig').get %} {% for Noshi in Noshis %} {% if Noshi.order_id == Order.id %} {% if loop.first %}
のしのご希望

{% endif %} ■{{ Noshi.product }}
{% if Config.paper_kind %}のしの種類:{% if Noshi.NoshiKind %}{{ Noshi.NoshiKind }}{% else %}選択されていません。{% endif %}
{% endif %} {% if Config.paper_tie %}表書き(上段):{% if Noshi.NoshiTie %}{{ Noshi.NoshiTie }}{% else %}選択されていません。{% endif %}
{% if Noshi.noshi_sonota is not empty %}その他:{{ Noshi.noshi_sonota }}
{% endif %}{% endif %} {% if Config.paper_name %}お名前:{% if Noshi.noshi_name %}{{ Noshi.noshi_name }}{% else %}選択されていません。{% endif %}
{% endif %}
{% endif %} {% endfor %} ------------------------------------------ (2)設定>店舗設定>メール設定(ファイル名:order.twig) ============================== テンプレート:注文受付メール 本文:「テキスト」タブをクリック ============================== 109行目付近に追加。(109行目付近の、============================================ の上に追加) ------------------------------------------ {% set Noshis = repository('Plugin\\Noshi\\Entity\\Noshi').getList %} {% set Config = repository('Plugin\\Noshi\\Entity\\NoshiConfig').get %} {% for Noshi in Noshis %} {% if Noshi.order_id == Order.id %} {% if loop.first %} ************************************************ のしのご希望 ************************************************ {% endif %} ■{{ Noshi.product }} {% if Config.paper_kind %}のしの種類:{% if Noshi.NoshiKind %}{{ Noshi.NoshiKind }}{% else %}選択されていません。{% endif %}{% endif %} {% if Config.paper_tie %}表書き(上段):{% if Noshi.NoshiTie %}{{ Noshi.NoshiTie }}{% else %}選択されていません。{% endif %} {% if Noshi.noshi_sonota is not empty %}その他:{{ Noshi.noshi_sonota }}
{% endif %}{% endif %} {% if Config.paper_name %}お名前:{% if Noshi.noshi_name %}{{ Noshi.noshi_name }}{% else %}選択されていません。{% endif %}{% endif %} {% endif %} {% endfor %} ------------------------------------------ (3)設定>店舗設定>メール設定(ファイル名:shipping_notify.html.twig) ============================== テンプレート:出荷通知メール 本文:「HTML」タブをクリック ============================== 81行目付近に追加。(80行目付近の
の下) ------------------------------------------ {% set Noshis = repository('Plugin\\Noshi\\Entity\\Noshi').getList %} {% set Config = repository('Plugin\\Noshi\\Entity\\NoshiConfig').get %} {% for Noshi in Noshis %} {% if Noshi.order_id == Order.id %} {% if loop.first %}
のしのご希望

{% endif %} ■{{ Noshi.product }}
{% if Config.paper_kind %}のしの種類:{% if Noshi.NoshiKind %}{{ Noshi.NoshiKind }}{% else %}選択されていません。{% endif %}
{% endif %} {% if Config.paper_tie %}表書き(上段):{% if Noshi.NoshiTie %}{{ Noshi.NoshiTie }}{% else %}選択されていません。{% endif %}
{% if Noshi.noshi_sonota is not empty %}その他:{{ Noshi.noshi_sonota }}
{% endif %}{% endif %} {% if Config.paper_name %}お名前:{% if Noshi.noshi_name %}{{ Noshi.noshi_name }}{% else %}選択されていません。{% endif %}
{% endif %}
{% endif %} {% endfor %} ------------------------------------------ (4)設定>店舗設定>メール設定(ファイル名:shipping_notify.twig) ============================== テンプレート:出荷通知メール 本文:「テキスト」タブをクリック ============================== 63行目付近に追加。({% endautoescape %}の上に、空白行を設けて追加) ------------------------------------------ {% set Noshis = repository('Plugin\\Noshi\\Entity\\Noshi').getList %} {% set Config = repository('Plugin\\Noshi\\Entity\\NoshiConfig').get %} {% for Noshi in Noshis %} {% if Noshi.order_id == Order.id %} {% if loop.first %} ************************************************ のしのご希望 ************************************************ {% endif %} ■{{ Noshi.product }} {% if Config.paper_kind %}のしの種類:{% if Noshi.NoshiKind %}{{ Noshi.NoshiKind }}{% else %}選択されていません。{% endif %}{% endif %} {% if Config.paper_tie %}表書き(上段):{% if Noshi.NoshiTie %}{{ Noshi.NoshiTie }}{% else %}選択されていません。{% endif %} {% if Noshi.noshi_sonota is not empty %}その他:{{ Noshi.noshi_sonota }}
{% endif %}{% endif %} {% if Config.paper_name %}お名前:{% if Noshi.noshi_name %}{{ Noshi.noshi_name }}{% else %}選択されていません。{% endif %}{% endif %} {% endif %} {% endfor %} ------------------------------------------