Chatwoot/app/jobs/notification/email_notification_job.rb
Sojan Jose 31c07771e8
feat: Notification on new messages in conversation (#1204)
fixes: #895
fixes: #1118
fixes: #1075

Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
2020-09-10 19:19:15 +05:30

10 lines
311 B
Ruby

class Notification::EmailNotificationJob < ApplicationJob
queue_as :default
def perform(notification)
# no need to send email if notification has been read already
return if notification.read_at.present?
Notification::EmailNotificationService.new(notification: notification).perform
end
end