From 5207c38d30eeffcb5fb95b753d0cb235d7fe616d Mon Sep 17 00:00:00 2001 From: bettina Date: Thu, 27 Jun 2024 13:45:31 +0200 Subject: [PATCH] change sender mail --- static/php/ajaxmail.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/php/ajaxmail.php b/static/php/ajaxmail.php index ebb4446..127d2e0 100644 --- a/static/php/ajaxmail.php +++ b/static/php/ajaxmail.php @@ -36,8 +36,8 @@ try { $mail->Port = 465; // TCP port for the connection // Recipients - $mail->setFrom('support@verua.ch', 'VeruA Support'); // Sender address - $mail->addAddress('support@verua.ch', 'VeruA Support'); // Add another recipient + $mail->setFrom('support@verua.ch', 'VeruA AG'); // Sender address + $mail->addAddress('support@verua.ch', 'VeruA AG'); // Add another recipient // $mail->addBCC('ah@mediendesign-hnida.de'); // Add bounce email address as BCC $mail->addBCC('rabe@verua.swiss'); // Add bounce email address as BCC @@ -63,6 +63,7 @@ try { $customerMessage = constructCustomerMessage($message, $lang); $mail->clearAddresses(); +// $mail->ClearBCCs(); $mail->addAddress($customerEmail); $mail->Subject = $encodedSubject; $mail->Body = nl2br(htmlspecialchars($customerMessage));