vidpush/app/mailers/videolisting_mailer.rb

9 lines
282 B
Ruby
Raw Normal View History

2014-05-05 18:07:33 +00:00
class VideolistingMailer < ActionMailer::Base
default from: "noreply@propelmarketing.com"
def videolisting_complete(videolisting)
@listing = videolisting
2014-05-06 14:43:27 +00:00
mail(to: videolisting.campaign.vpa_email, subject: "A Video Listing has been completed by Better Video")
2014-05-05 18:07:33 +00:00
end
end