fix: route iqon contact form to office inbox

This commit is contained in:
Sergei Vasilev
2026-05-21 08:52:29 +03:00
parent 094c6ce3d2
commit e5608fe3d5
@@ -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;