mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
80858bae2c
- 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
10 lines
284 B
Ruby
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
|