From 84ba88a99f040729de18d17a621db508ea0d0cd7 Mon Sep 17 00:00:00 2001 From: bettina Date: Fri, 28 Jun 2024 10:07:09 +0200 Subject: [PATCH] add reply to --- static/php/ajaxmail.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/php/ajaxmail.php b/static/php/ajaxmail.php index 235351c..ebb864d 100644 --- a/static/php/ajaxmail.php +++ b/static/php/ajaxmail.php @@ -63,10 +63,10 @@ try { $customerMessage = constructCustomerMessage($message, $lang); - $adressReplyTo = ($lang == "FR" ? "contact@verua.ch" : "kontakt@verua.ch"); +// $adressReplyTo = ($lang == "FR" ? "contact@verua.ch" : "kontakt@verua.ch"); $mail->clearAddresses(); $mail->ClearBCCs(); - $mail->addReplyTo($adressReplyTo, 'VeruA AG - Support-Team'); // Sender address + $mail->addReplyTo('kontakt@verua.ch', 'VeruA AG - Support-Team'); // Sender address $mail->addBCC('rabe@verua.swiss'); // Add bounce email address as BCC $mail->addAddress($customerEmail); $mail->Subject = $encodedSubject;