diff --git a/app/models/concerns/mailable.rb b/app/models/concerns/mailable.rb index b75d05867..fef18bea2 100644 --- a/app/models/concerns/mailable.rb +++ b/app/models/concerns/mailable.rb @@ -38,7 +38,7 @@ def send_welcome_email { title: "Contact name", value: contact_name, short: true }, { title: "Contact email", value: contact_email, short: true } ] - User.send_notification_to_slack(nil, title: subject, level: "warning", fields: fields) + User.send_notification_to_slack(nil, title: subject, level: "good", fields: fields) response end @@ -56,7 +56,7 @@ def send_delete_email { title: "Contact name", value: contact_name, short: true }, { title: "Contact email", value: contact_email, short: true } ] - User.send_notification_to_slack(nil, title: subject, level: "good", fields: fields) + User.send_notification_to_slack(nil, title: subject, level: "warning", fields: fields) response end