Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
class Messages::SendEmailNotificationService
|
|
pattr_initialize [:message!]
|
|
|
|
def perform
|
|
return unless should_send_email_notification?
|
|
|
|
conversation = message.conversation
|
|
conversation_mail_key = format(::Redis::Alfred::CONVERSATION_MAILER_KEY, conversation_id: conversation.id)
|
|
|
|
# Atomically set redis key to prevent duplicate email workers. Keep the key alive longer than
|
|
# the worker delay (1 hour) so slow queues don't enqueue duplicate jobs, but let it expire if
|
|
# the worker never manages to clean up.
|
|
return unless Redis::Alfred.set(conversation_mail_key, message.id, nx: true, ex: 1.hour.to_i)
|
|
|
|
ConversationReplyEmailJob.set(wait: 2.minutes).perform_later(conversation.id, message.id)
|
|
end
|
|
|
|
private
|
|
|
|
def should_send_email_notification?
|
|
return false unless message.email_notifiable_message?
|
|
return false if message.conversation.contact.email.blank?
|
|
|
|
email_reply_enabled?
|
|
end
|
|
|
|
def email_reply_enabled?
|
|
inbox = message.inbox
|
|
case inbox.channel.class.to_s
|
|
when 'Channel::WebWidget'
|
|
inbox.channel.continuity_via_email
|
|
when 'Channel::Api'
|
|
inbox.account.feature_enabled?('email_continuity_on_api_channel')
|
|
else
|
|
false
|
|
end
|
|
end
|
|
end
|