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));