Форма реализована вот таким вот способом ,сообщения не приходят!
<?php
if ($_POST['action']) {
$count = $_POST['count'];
$company_name = $_POST['company_name'];
$phone_number = $_POST['phone_number'];
$addr = $_POST['addr'];
$price = fruitframe_get_option('price_of_bottle');
if ($phone_number && $company_name && $addr && $count && $count != '' && $count > 0) {
// Example using the array form of $headers
// assumes $to, $subject, $message have already been defined earlier...
$headers[] = 'From: MWATER.RU <"' . get_option('admin_email') . '">';
$headers[] = 'Cc: John Q Codex <"' . site_url() . '">';
$headers[] = 'Cc: "' . get_option('admin_email') . '"'; // note you can just use a simple email address
$to = get_option('admin_email');
$subject = "Быстрый заказ воды" . "\r\n";
$message = 'Количество бутылок : ' . $count . "\r\n";
$message .= "Название компании : " . $company_name . "\r\n";
$message .= "Телефон : " . $phone_number . "\r\n";
$message .= "Адрес доставки : " . $addr . "\r\n";
$message .= "Сумма : " . $price*$count . "\r\n";
if ($_POST['new_client']) {
$message .= "Я новый клиент. " . "\r\n";
}
if ($_POST['more_option']) {
$message .= "Мне нужен кулер или помпа." . "\r\n";
}
$error = 'Спасибо за заказ. Мы свяжемся с вами в ближайшее время.';
wp_mail($to, $subject, $message, $headers);
} else {
$error = "Заполните все поля для быстрого заказа!";
}
}
?>
<div class="col-md-6">
<!-- Quick Order -->
<div class="panel panel-default module-quickorder">
<div class="panel-heading"><strong>Быстрый заказ воды</strong>
<?php if ($error)
echo "</br><span class='red' style='color:red'> " . $error . "</span>"; ?>
</div>
<div class="panel-body">
<form action="" role="form" name="fast_order" id="fast_order" method="post">
<input type="hidden" name="action" value="mail_send">
<div class="form-group">
<label for="qNumBotles">Количество бутылок воды</label>
<input id="qNumBotles" type="number" name="count" min="0" id="cout" value="<?php echo $count; ?>" class="form-control"/>
</div>
<div class="form-group">
<label for="qName">ФИО/Название компании</label>
<input id="qName" type="text" name="company_name" id="company_name" value="<?php echo $company_name; ?>" class="form-control"/>
</div>
<div class="form-group">
<label for="qPhone">Телефон</label>
<input id="qPhone" type="text" name="phone_number" id="phone_number" value="<?php echo $phone_number; ?>" class="form-control"/>
</div>
<div class="form-group">
<label for="qAddr">Адрес доставки</label>
<input id="qAddr" type="text" name="addr" id="addr" value="" class="form-control"/>
</div>
<div class="form-group">
<label for="qPrice">Цена</label>
<input id="qPrice" type="text" name="price_of_bottle" readonly id="price_of_bottle" value="<?php echo fruitframe_get_option('price_of_bottle'); ?>" class="form-control"/>
</div>
<input type="hidden" name="price" id="price" value="<?php echo fruitframe_get_option('price_of_bottle'); ?>">
<input type="hidden" name="summ" id="summ" value="">
<div class="form-group">
<label for="qSumm">Сумма</label>
<input id="qSumm" type="text" name="summ" id="summ" value="0" readonly class="form-control"/>
</div>
<label for="ck0">
<input type="checkbox" name="new_client" id="ck0"/>
Я новый клиент.
</label>
<label for="ck1">
<input type="checkbox" name="more_option" id="ck1"/>
Мне понадобится помпа или кулер.
</label>
<button class="btn btn-success btn-block fast_order_click">Заказать воду</button>
</form>
</div>
</div>
<!-- /Quick Order -->
</div>
Форма работала и перестала,подскажите может где то что то сломано?В php не силён,немогу разобраться где ошибка.