Здравствуйте! Подскажите пожалуйста, что здесь не так?
$to = 'a.site@gmail.com';
$name = strip_tags(trim($_POST['name']));
$email = strip_tags(trim($_POST['email']));
$skype = strip_tags(trim($_POST['skype']));
$sms = strip_tags(trim($_POST['sms']));
$message = "Имя пользователя: ".$name."\r\n";
$message .= "Почта: ".$email."\r\n";
$message .= "Skype: ".$skype."\r\n";
$message .= "Сообщение: ".$sms."\r\n";
$tema = "=?utf-8?B?".base64_encode($subject)."?=";
$headers = "From: $from\r\nReply-to: $from\r\nContent-type:text/plain; charset=utf-8\r\n";
mail($to, $tema, $message, $headers);
<div class="popupcontact">
<div class="wrapper">
<div class="popupcontacttitle" id="about">Оставьте заявку сейчас и получите бесплатную консультацию!</div>
<form id="form" method="post" action="form.php" class="popupform">
<input type="text" placeholder="Ваше имя" id="name" name="name" value="<?=$_POST['name'] ?? '' ?>" />
<input type="email" placeholder="Ваша почта" id="email" name="email" value="<?=$_POST['email'] ?? '' ?>" />
<input type="text" placeholder="Ваш Skype" name="skype" value="<?=$_POST['skype'] ?? '' ?>" />
<textarea name="sms" cols="5" rows="10" placeholder="Ваше сообщение" value="<?=$_POST['sms'] ?? '' ?>" ></textarea>
<div>
<button type="submit" id="sbm">Оставьте заявку</button>
</div>
</form>
</div>
</div>
а на почту получаю: