Bu sayfadaki deneme kodunu çalıştırdığınızda gönderiliyor mu?
http://www.rackspace.com/knowledge_c...-functionality <?php
$headers = 'From: webmaster@example.com'; mail('nobody@example.com', 'Test email using PHP', 'This is a test email message', $headers, '-fwebmaster@example.com');
?>veya daha anlaşılır versiyonu aşağıdaki.
$to, $subject ve $message kısımlarını kendiniz değiştirmelisiniz.
<?php $to = 'nobody@example.com'; $subject = 'Test email using PHP'; $message = 'This is a test email message'; $headers = 'From: webmaster@example.com' . "\r\n" . 'Reply-To: webmaster@example.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers, '-fwebmaster@example.com'); ?>