mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
branch : moe extra : convert_revision : svn%3A2d28d66d-8d94-df11-8c86-00306ef368cb/trunk/moe%405
11 lines
270 B
Ruby
11 lines
270 B
Ruby
class ReportMailer < ActionMailer::Base
|
|
default_url_options["host"] = CONFIG["server_host"]
|
|
|
|
def moderator_report(email)
|
|
recipients email
|
|
from CONFIG["email_from"]
|
|
subject "#{CONFIG['app_name']} - Moderator Report"
|
|
content_type "text/html"
|
|
end
|
|
end
|