discourse/app/mailers/download_backup_mailer.rb
Blake Erickson 80858bae2c FEATURE: further restrict downloading of backups
- send email to logged in admin when they press the "download" button
- show pop-up that email was sent
- create email template
- require a valid token to download backup
2017-03-01 08:28:34 -07:00

10 lines
284 B
Ruby

require_dependency 'email/message_builder'
class DownloadBackupMailer < ActionMailer::Base
include Email::BuildEmailHelper
def send_email(to_address, backup_file_path)
build_email(to_address, template: 'download_backup_mailer', backup_file_path: backup_file_path)
end
end