mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
9 lines
195 B
Ruby
Vendored
9 lines
195 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AiReportMailer < ActionMailer::Base
|
|
include Email::BuildEmailHelper
|
|
|
|
def send_report(to_address, opts = {})
|
|
build_email(to_address, **opts)
|
|
end
|
|
end
|