mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-15 11:27:11 +08:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AiReportMailer < ActionMailer::Base
|
|
include Email::BuildEmailHelper
|
|
|
|
def send_report(to_address, opts = {})
|
|
build_email(to_address, **opts)
|
|
end
|
|
end
|