You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
322 B

4 years ago
class ReporterMailer < ActionMailer::Base
default from: Cartodb.get_config(:mailer, 'from')
layout 'mail'
def trending_maps_report(mail_to, trending_visualizations)
@subject = "Daily trending maps report"
@trending_visualizations = trending_visualizations
mail to: mail_to, subject: @subject
end
end