Module: Spree::OrderMailerDecorator
- Defined in:
- app/mailer/spree/order_mailer_decorator.rb
Instance Method Summary collapse
-
#cancel_email(order, resend = false) ⇒ Object
@gem-override spree_emails-5.3.6/app/mailers/spree/order_mailer.rb#cancel_email.
-
#confirm_email(order, resend = false) ⇒ Object
@gem-override spree_emails-5.3.6/app/mailers/spree/order_mailer.rb#confirm_email 管理画面で設定したカスタム件名・本文を使えるよう send_custom_email に委譲する。.
Instance Method Details
#cancel_email(order, resend = false) ⇒ Object
@gem-override spree_emails-5.3.6/app/mailers/spree/order_mailer.rb#cancel_email
12 13 14 |
# File 'app/mailer/spree/order_mailer_decorator.rb', line 12 def cancel_email(order, resend = false) send_custom_email(order, 'cancel_email', resend) end |
#confirm_email(order, resend = false) ⇒ Object
@gem-override spree_emails-5.3.6/app/mailers/spree/order_mailer.rb#confirm_email 管理画面で設定したカスタム件名・本文を使えるよう send_custom_email に委譲する。
6 7 8 |
# File 'app/mailer/spree/order_mailer_decorator.rb', line 6 def confirm_email(order, resend = false) send_custom_email(order, 'confirm_email', resend) end |