vidpush/app/mailers/videolisting_mailer.rb
2014-05-06 10:43:27 -04:00

9 lines
282 B
Ruby

class VideolistingMailer < ActionMailer::Base
default from: "noreply@propelmarketing.com"
def videolisting_complete(videolisting)
@listing = videolisting
mail(to: videolisting.campaign.vpa_email, subject: "A Video Listing has been completed by Better Video")
end
end