Sha256: 8b368cbedca36abc4c2b9eb5eb758b2d34e26c0e9f2deabdf648ce662da877de
Contents?: true
Size: 287 Bytes
Versions: 2
Compression:
Stored size: 287 Bytes
Contents
class OrderMailer < ActionMailer::Base default :from => "support@artful.ly" layout "mail" # TODO: Send using only information from Order def confirmation_for(order) @order = order @person = order.person mail :to => @person.email, :subject => "Your Order" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
artfully_ose-1.0.0.rc4 | app/mailers/order_mailer.rb |
artfully_ose-1.0.0.rc3 | app/mailers/order_mailer.rb |