Class: Pay::UserMailer
- Inherits:
-
Object
- Object
- Pay::UserMailer
- Defined in:
- app/mailers/pay/user_mailer.rb
Instance Method Summary collapse
- #payment_action_required ⇒ Object
- #payment_failed ⇒ Object
- #receipt ⇒ Object
- #refund ⇒ Object
- #subscription_renewing ⇒ Object
- #subscription_trial_ended ⇒ Object
- #subscription_trial_will_end ⇒ 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 mail_arguments end |
#payment_failed ⇒ Object
31 32 33 |
# File 'app/mailers/pay/user_mailer.rb', line 31 def payment_failed mail mail_arguments 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 mail_arguments end |
#refund ⇒ Object
11 12 13 |
# File 'app/mailers/pay/user_mailer.rb', line 11 def refund mail mail_arguments end |
#subscription_renewing ⇒ Object
15 16 17 |
# File 'app/mailers/pay/user_mailer.rb', line 15 def subscription_renewing mail mail_arguments end |
#subscription_trial_ended ⇒ Object
27 28 29 |
# File 'app/mailers/pay/user_mailer.rb', line 27 def subscription_trial_ended mail mail_arguments end |
#subscription_trial_will_end ⇒ Object
23 24 25 |
# File 'app/mailers/pay/user_mailer.rb', line 23 def subscription_trial_will_end mail mail_arguments end |