mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 11:58:15 +08:00
7 lines
199 B
Ruby
7 lines
199 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DiscoursePolicy::PolicyMailer
|
|
def self.send_email(user, post)
|
|
Jobs.enqueue(:user_email, type: "policy_email", user_id: user.id, post_id: post.id)
|
|
end
|
|
end
|