mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 20:38:57 +08:00
9 lines
214 B
Ruby
9 lines
214 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TestMailer < ActionMailer::Base
|
|
include Email::BuildEmailHelper
|
|
|
|
def send_test(to_address, opts = {})
|
|
build_email(to_address, template: "test_mailer", **opts)
|
|
end
|
|
end
|