Class: Pay::UserMailer
- Inherits:
-
ApplicationMailer
- Object
- ActionMailer::Base
- ApplicationMailer
- Pay::UserMailer
- Defined in:
- app/mailers/pay/user_mailer.rb
Instance Method Summary collapse
- #payment_action_required ⇒ Object
- #receipt ⇒ Object
- #refund ⇒ Object
- #subscription_renewing ⇒ Object
Instance Method Details
#payment_action_required ⇒ Object
19 20 21 |
# File 'app/mailers/pay/user_mailer.rb', line 19 def payment_action_required mail to: to end |
#receipt ⇒ Object
3 4 5 6 7 8 9 |
# File 'app/mailers/pay/user_mailer.rb', line 3 def receipt if params[:pay_charge].respond_to? :receipt [params[:pay_charge].filename] = params[:pay_charge].receipt end mail to: to end |
#refund ⇒ Object
11 12 13 |
# File 'app/mailers/pay/user_mailer.rb', line 11 def refund mail to: to end |
#subscription_renewing ⇒ Object
15 16 17 |
# File 'app/mailers/pay/user_mailer.rb', line 15 def subscription_renewing mail to: to end |