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
permalink #payment_action_required ⇒ Object
[View source]
19 20 21 |
# File 'app/mailers/pay/user_mailer.rb', line 19 def payment_action_required mail mail_arguments end |
permalink #payment_failed ⇒ Object
[View source]
31 32 33 |
# File 'app/mailers/pay/user_mailer.rb', line 31 def payment_failed mail mail_arguments end |
permalink #receipt ⇒ Object
[View source]
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 |
permalink #refund ⇒ Object
[View source]
11 12 13 |
# File 'app/mailers/pay/user_mailer.rb', line 11 def refund mail mail_arguments end |
permalink #subscription_renewing ⇒ Object
[View source]
15 16 17 |
# File 'app/mailers/pay/user_mailer.rb', line 15 def subscription_renewing mail mail_arguments end |
permalink #subscription_trial_ended ⇒ Object
[View source]
27 28 29 |
# File 'app/mailers/pay/user_mailer.rb', line 27 def subscription_trial_ended mail mail_arguments end |
permalink #subscription_trial_will_end ⇒ Object
[View source]
23 24 25 |
# File 'app/mailers/pay/user_mailer.rb', line 23 def subscription_trial_will_end mail mail_arguments end |