From 53422baad3ca029cc32ec8b44ab47912b5022d54 Mon Sep 17 00:00:00 2001 From: bettina Date: Thu, 27 Jun 2024 14:42:41 +0200 Subject: [PATCH] edit forms and messages --- 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 010ed10..190a9a0 100644 --- a/static/php/ajaxmail.php +++ b/static/php/ajaxmail.php @@ -39,7 +39,7 @@ try { $mail->setFrom('order@verua.swiss', '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 + // Content Mail to support $mail->isHTML(true); // Email in HTML format @@ -63,7 +63,8 @@ try { $customerMessage = constructCustomerMessage($message, $lang); $mail->clearAddresses(); -// $mail->ClearBCCs(); + $mail->ClearBCCs(); + $mail->addBCC('rabe@verua.swiss'); // Add bounce email address as BCC $mail->addAddress($customerEmail); $mail->Subject = $encodedSubject; $mail->Body = nl2br(htmlspecialchars($customerMessage));