Any PHP experts here ! This code is for website contact form and is working fine at http://www.newsserver.net with the help of html, css, javascript and php, fine but I would like to add blind carbon copy (bcc) and carbon copy (cc) fields to the following php code. Please advice. Best Regards.
<?php
// an email address that will be in the From field of the email.
$from = ‘domain sending mail’;
// an email address that will receive the email with the output of the form
$sendTo = 'recipient email ';
// subject of the email
$subject = ‘WEBSITE CONTACT FORM’;
// form field names and their translations.
// array variable name => Text to appear in the email
$fields = array(‘name’ => ‘Name’, ‘surname’ => ‘Surname’, ‘email’ => ‘Email’,‘number’ => ‘Number’, ‘message’ => ‘Message’);
// message that will be displayed when everything is OK
$okMessage = ‘Contact form successfully submitted !’;
// If something goes wrong, we will display this message.
$errorMessage = 'There was an error while submitting the form. Please try again ';
// if you are not debugging and don’t need error reporting, turn this off by error_reporting(0);
error_reporting(E_ALL & ~E_NOTICE);
try
{
if(count($_POST) == 0) throw new \Exception('Form is empty');
$emailText = "CONTACT FORM \n=============================\n";
foreach ($_POST as $key => $value) {
// If the field exists in the $fields array, include it in the email
if (isset($fields[$key])) {
$emailText .= "$fields[$key]: $value\n";
}
}
// All the neccessary headers for the email.
$headers = array('Content-Type: text/plain; charset="UTF-8";',
'From: ' . $from,
'Reply-To: ' . $from,
'Return-Path: ' . $from,
);
// Send email
mail($sendTo, $subject, $emailText, implode("\n", $headers));
$responseArray = array('type' => 'success', 'message' => $okMessage);
}
catch (\Exception $e)
{
$responseArray = array(‘type’ => ‘danger’, ‘message’ => $errorMessage);
}
// if requested by AJAX request return JSON response
if (!empty($_SERVER[‘HTTP_X_REQUESTED_WITH’]) && strtolower($_SERVER[‘HTTP_X_REQUESTED_WITH’]) == ‘xmlhttprequest’) {
$encoded = json_encode($responseArray);
header('Content-Type: application/json');
echo $encoded;
}
// else just display the message echo $responseArray[‘message’];
else {
header(“Location:mywebpage.html”);
}