mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
10 lines
271 B
Ruby
10 lines
271 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|