Fix: automation email improvement (#6061)
This commit is contained in:
parent
38587b3aa1
commit
5541d9e00b
4 changed files with 37 additions and 2 deletions
|
@ -99,6 +99,13 @@ export const AUTOMATIONS = {
|
||||||
inputType: 'search_select',
|
inputType: 'search_select',
|
||||||
filterOperators: OPERATOR_TYPES_1,
|
filterOperators: OPERATOR_TYPES_1,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'mail_subject',
|
||||||
|
name: 'Email Subject',
|
||||||
|
attributeI18nKey: 'MAIL_SUBJECT',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'country_code',
|
key: 'country_code',
|
||||||
name: 'Country',
|
name: 'Country',
|
||||||
|
@ -190,6 +197,13 @@ export const AUTOMATIONS = {
|
||||||
inputType: 'search_select',
|
inputType: 'search_select',
|
||||||
filterOperators: OPERATOR_TYPES_1,
|
filterOperators: OPERATOR_TYPES_1,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'mail_subject',
|
||||||
|
name: 'Email Subject',
|
||||||
|
attributeI18nKey: 'MAIL_SUBJECT',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'country_code',
|
key: 'country_code',
|
||||||
name: 'Country',
|
name: 'Country',
|
||||||
|
|
|
@ -29,7 +29,8 @@ class AutomationRule < ApplicationRecord
|
||||||
|
|
||||||
scope :active, -> { where(active: true) }
|
scope :active, -> { where(active: true) }
|
||||||
|
|
||||||
CONDITIONS_ATTRS = %w[content email country_code status message_type browser_language assignee_id team_id referer city company inbox_id].freeze
|
CONDITIONS_ATTRS = %w[content email country_code status message_type browser_language assignee_id team_id referer city company inbox_id
|
||||||
|
mail_subject].freeze
|
||||||
ACTIONS_ATTRS = %w[send_message add_label send_email_to_team assign_team assign_agent send_webhook_event mute_conversation send_attachment
|
ACTIONS_ATTRS = %w[send_message add_label send_email_to_team assign_team assign_agent send_webhook_event mute_conversation send_attachment
|
||||||
change_status resolve_conversation snooze_conversation send_email_transcript].freeze
|
change_status resolve_conversation snooze_conversation send_email_transcript].freeze
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,13 @@
|
||||||
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
"attribute_type": "additional_attributes"
|
"attribute_type": "additional_attributes"
|
||||||
},
|
},
|
||||||
|
"mail_subject": {
|
||||||
|
"attribute_name": "Email Subject",
|
||||||
|
"input_type": "textbox",
|
||||||
|
"data_type": "text",
|
||||||
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
|
"attribute_type": "additional_attributes"
|
||||||
|
},
|
||||||
"country_code": {
|
"country_code": {
|
||||||
"attribute_name": "Country Name",
|
"attribute_name": "Country Name",
|
||||||
"input_type": "textbox",
|
"input_type": "textbox",
|
||||||
|
@ -142,6 +149,13 @@
|
||||||
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
"attribute_type": "additional_attributes"
|
"attribute_type": "additional_attributes"
|
||||||
},
|
},
|
||||||
|
"mail_subject": {
|
||||||
|
"attribute_name": "Email Subject",
|
||||||
|
"input_type": "textbox",
|
||||||
|
"data_type": "text",
|
||||||
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
|
"attribute_type": "additional_attributes"
|
||||||
|
},
|
||||||
"country_code": {
|
"country_code": {
|
||||||
"attribute_name": "Country Name",
|
"attribute_name": "Country Name",
|
||||||
"input_type": "textbox",
|
"input_type": "textbox",
|
||||||
|
|
|
@ -258,7 +258,13 @@ describe AutomationRuleListener do
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'triggers automation rule send email to the team' do
|
it 'triggers automation rule send email to the team' do
|
||||||
expect(TeamNotifications::AutomationNotificationMailer).to receive(:conversation_creation)
|
message_delivery = instance_double(ActionMailer::MessageDelivery)
|
||||||
|
|
||||||
|
expect(TeamNotifications::AutomationNotificationMailer).to receive(:conversation_creation).with(
|
||||||
|
conversation, team,
|
||||||
|
'Please pay attention to this conversation, its from high priority customer'
|
||||||
|
).and_return(message_delivery)
|
||||||
|
allow(message_delivery).to receive(:deliver_now)
|
||||||
|
|
||||||
listener.conversation_updated(event)
|
listener.conversation_updated(event)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue