<?php $title = 'zxcczx'; $mess = 'hjkhkjhhkjhkjhjkhkh'; $to = 'fsdfd@yandex.ru'; $from='test@test.ru'; mail($to, $title, $mess, $from); ?> что то не хочет отправлять, с хостом все ок.. В чем ошибка?
PHP: <?php $to = 'nobody@example.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@site.com' . "\r\n" . 'Reply-To: webmaster@site.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?>