4

チェックアウト後のメール メッセージにテキストを挿入しようとしています。spree/order_mailer/confirm_email.text.erb にテンプレートが見つかりました

<%= Spree.t('order_mailer.confirm_email.dear_customer') %>

<%= Spree.t('order_mailer.confirm_email.instructions') %>

============================================================
<%= Spree.t('order_mailer.confirm_email.order_summary') %>
============================================================
<% @order.line_items.each do |item| %>
<%= item.variant.sku %> <%= raw(item.variant.product.name) %> <%= raw(item.variant.options_text) -%> (<%=item.quantity%>) @ <%= item.single_money %> = <%= item.display_amount %>
<% end %>
============================================================
<%= Spree.t('order_mailer.confirm_email.subtotal', :subtotal => @order.display_item_total) %>

<% @order.adjustments.eligible.each do |adjustment| %>
  <%= raw(adjustment.label) %> <%= adjustment.display_amount %>
<% end %>

<%= Spree.t('order_mailer.confirm_email.total', :total => @order.display_total) %>

<%= Spree.t('order_mailer.confirm_email.thanks') %>

したがって、この後にテキストを追加する方法がわかりません。セレクターはありません。

Deface::Override.new(
    :virtual_path => "spree/order_mailer/confirm_email",
    :insert_bottom => '*',
    :partial      => "spree/shared/confirm_email",    
    :name         => "confirm_email",
    :original     => '3a8c298b4d9884a4d9f842b23fcb4fabf92ef0f3'
)

これを解決する方法を教えてください。

4

2 に答える 2

3

ここで解決策を見つけました:products.imagesからSpreeメールの添付ファイル(画像)を追加する方法は?. 新しいテンプレート/app/views/spree/order_mailer/confirm_email.text.erbを作成し、ここにコードを追加しました。

于 2013-10-03T07:35:04.857 に答える