Class: Spree::BaseMailer
- Inherits:
-
ActionMailer::Base
- Object
- ActionMailer::Base
- Spree::BaseMailer
show all
- Defined in:
- app/mailers/spree/base_mailer.rb
Instance Method Summary
collapse
Instance Method Details
#from_address ⇒ Object
3
4
5
|
# File 'app/mailers/spree/base_mailer.rb', line 3
def from_address
Spree::Config[:mails_from]
end
|
#mail(headers = {}, &block) ⇒ Object
12
13
14
|
# File 'app/mailers/spree/base_mailer.rb', line 12
def mail(={}, &block)
super if Spree::Config[:send_core_emails]
end
|
#money(amount) ⇒ Object
7
8
9
|
# File 'app/mailers/spree/base_mailer.rb', line 7
def money(amount)
Spree::Money.new(amount).to_s
end
|