- Create Liquid i18n filter (LiquidFilters::I18nFilter) exposing I18n.t() as `t` filter - Replace hardcoded English strings in all 26 Liquid email templates with i18n keys - Replace hardcoded English strings in all 4 Devise ERB email templates with t() calls - Translate all mailer subjects to use I18n.t() for locale-aware rendering - Add comprehensive pt-BR translations for all transactional emails - Fix ApplicationRecord#to_drop to walk STI hierarchy (SuperAdmin -> User)
76 lines
3.5 KiB
Ruby
76 lines
3.5 KiB
Ruby
class AgentNotifications::ConversationNotificationsMailer < ApplicationMailer
|
|
def conversation_creation(conversation, agent, _user)
|
|
return unless smtp_config_set_or_development?
|
|
|
|
@agent = agent
|
|
@conversation = conversation
|
|
inbox_name = @conversation.inbox&.sanitized_name
|
|
subject = I18n.t('mailer.agent_notifications.conversation_creation.subject',
|
|
agent_name: @agent.available_name, conversation_id: @conversation.display_id, inbox_name: inbox_name)
|
|
@action_url = app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
|
send_mail_with_liquid(to: @agent.email, subject: subject) and return
|
|
end
|
|
|
|
def conversation_assignment(conversation, agent, _user)
|
|
return unless smtp_config_set_or_development?
|
|
|
|
@agent = agent
|
|
@conversation = conversation
|
|
subject = I18n.t('mailer.agent_notifications.conversation_assignment.subject',
|
|
agent_name: @agent.available_name, conversation_id: @conversation.display_id)
|
|
@action_url = app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
|
send_mail_with_liquid(to: @agent.email, subject: subject) and return
|
|
end
|
|
|
|
def conversation_mention(conversation, agent, message)
|
|
return unless smtp_config_set_or_development?
|
|
|
|
@agent = agent
|
|
@conversation = conversation
|
|
@message = message
|
|
subject = I18n.t('mailer.agent_notifications.conversation_mention.subject',
|
|
agent_name: @agent.available_name, conversation_id: @conversation.display_id)
|
|
@action_url = app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
|
send_mail_with_liquid(to: @agent.email, subject: subject) and return
|
|
end
|
|
|
|
def assigned_conversation_new_message(conversation, agent, message)
|
|
return unless smtp_config_set_or_development?
|
|
# Don't spam with email notifications if agent is online
|
|
return if ::OnlineStatusTracker.get_presence(message.account_id, 'User', agent.id)
|
|
|
|
@agent = agent
|
|
@conversation = conversation
|
|
subject = I18n.t('mailer.agent_notifications.assigned_conversation_new_message.subject',
|
|
agent_name: @agent.available_name, conversation_id: @conversation.display_id)
|
|
@action_url = app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
|
send_mail_with_liquid(to: @agent.email, subject: subject) and return
|
|
end
|
|
|
|
def participating_conversation_new_message(conversation, agent, message)
|
|
return unless smtp_config_set_or_development?
|
|
# Don't spam with email notifications if agent is online
|
|
return if ::OnlineStatusTracker.get_presence(message.account_id, 'User', agent.id)
|
|
|
|
@agent = agent
|
|
@conversation = conversation
|
|
subject = I18n.t('mailer.agent_notifications.participating_conversation_new_message.subject',
|
|
agent_name: @agent.available_name, conversation_id: @conversation.display_id)
|
|
@action_url = app_account_conversation_url(account_id: @conversation.account_id, id: @conversation.display_id)
|
|
send_mail_with_liquid(to: @agent.email, subject: subject) and return
|
|
end
|
|
|
|
private
|
|
|
|
def liquid_droppables
|
|
super.merge({
|
|
user: @agent,
|
|
conversation: @conversation,
|
|
inbox: @conversation.inbox,
|
|
message: @message
|
|
})
|
|
end
|
|
end
|
|
|
|
AgentNotifications::ConversationNotificationsMailer.prepend_mod_with('AgentNotifications::ConversationNotificationsMailer')
|