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