From ba3eb787e77d26027dca8d15cd8ef3ddc33cf26b Mon Sep 17 00:00:00 2001 From: Mazen Khalil Date: Sat, 10 Jan 2026 02:11:19 +0300 Subject: [PATCH] fix: Avoid double notification email after importing contacts (#13150) Eliminate the second email notification sent to the account admins after processing the contacts import. Co-authored-by: Pranav --- app/jobs/data_import_job.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/jobs/data_import_job.rb b/app/jobs/data_import_job.rb index db1411e68..d8bbeb992 100644 --- a/app/jobs/data_import_job.rb +++ b/app/jobs/data_import_job.rb @@ -65,7 +65,6 @@ class DataImportJob < ApplicationJob @data_import.failed_records.attach(io: StringIO.new(csv_data), filename: "#{Time.zone.today.strftime('%Y%m%d')}_contacts.csv", content_type: 'text/csv') - send_import_notification_to_admin end def generate_csv_data(rejected_contacts)