From e5608fe3d5914f209ee9273f78cf005ad3277a6f Mon Sep 17 00:00:00 2001 From: Sergei Vasilev Date: Thu, 21 May 2026 08:52:29 +0300 Subject: [PATCH] fix: route iqon contact form to office inbox --- deploy/legacy-wordpress-2026-05-20/theme/contactkz.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deploy/legacy-wordpress-2026-05-20/theme/contactkz.php b/deploy/legacy-wordpress-2026-05-20/theme/contactkz.php index dceb9a8..ef4c93d 100644 --- a/deploy/legacy-wordpress-2026-05-20/theme/contactkz.php +++ b/deploy/legacy-wordpress-2026-05-20/theme/contactkz.php @@ -44,9 +44,8 @@ $new_mail = new PHPMailer(true); try { $new_mail->AddReplyTo($email, $nume); - $admin_email = get_option('admin_email'); - //dv($admin_email);die(); - $new_mail->AddAddress($admin_email); + $admin_email = 'office@iqon.com'; + $new_mail->AddAddress($admin_email); //$new_mail->AddAddress('gabriel.ilie@gmail.com', 'Gabriel Ilie'); $new_mail->SetFrom('contact@iqon.com', 'CONTACT FORM'); $new_mail->Subject = '[IQON CONTACT FORM] '.$nume.' has sent you a message. Subject: '.$subject;