Files
openfoodnetwork/app/views/subscription_mailer/placement_email.html.haml
Kristina Lim f8244a400a Custom subscription placement email if non-user
The order link should not be provided if the order does not have an
associated user account.
2018-09-01 23:46:11 +08:00

36 lines
1.3 KiB
Plaintext

- intro_key = "email_so_placement_intro_html"
= render 'header', intro: t(intro_key, distributor: @order.distributor.name)
%p.callout
= t("email_so_placement_explainer_html")
- if @order.user.present?
- allow_changes = !!@order.distributor.allow_order_changes?
= t("email_so_edit_#{allow_changes}_html",
orders_close_at: l(@order.order_cycle.orders_close_at, format: mail_long_datetime_format),
order_url: spree.order_url(@order))
= t("email_so_contact_distributor_html", distributor: @order.distributor.name, email: @order.distributor.contact.email)
- else
= t("email_so_contact_distributor_to_change_order_html",
orders_close_at: l(@order.order_cycle.orders_close_at, format: mail_long_datetime_format),
distributor: @order.distributor.name,
email: @order.distributor.contact.email)
%p  
%h4
= t :email_confirm_customer_number_html, number: @order.number
%p
= t("email_so_placement_details_html", distributor: @order.distributor.name)
- if @changes.any?
%p.callout
= t("email_so_placement_changes")
= render 'spree/order_mailer/order_summary'
= render 'spree/order_mailer/payment'
= render 'spree/order_mailer/shipping'
= render 'spree/order_mailer/special_instructions'
= render 'spree/order_mailer/signoff'