<?php
error_reporting(E_ALL);
$to = 'rognarock@gmail.com';
$subject = 'Them';
$message = 'Message';
$headers = 'MIME-Version: 1.0' . "rn";
$headers .= 'Content-type: text/html; charset=windows-1251' . "rn";
$headers .= 'To: user <rognarock@gmail.com>' . "rn";
$headers .= 'From: server <server@vkolhoze.com>' . "rn";
mail($to, $subject, $message, $headers);
?>