$headers .= "From: Почта <".$_POST['mail'].">";
$autor = $_POST['email'];
$to = $_POST['to_email'];
$message = $_POST['message']
<form action="/" method="post">
<input type="email" name"email" value=""> <!-- Адрес отправителя -->
<input type="email" name"to_email" value=""> <!-- Адрес кому отправляем-->
<input type="text" name="message" value=""><!-- Текст письма -->
<input type="submit" name="good" value="Отправить письмо">
</form>