我最近写了个mail执行后没有出现错误信息执行完毕后邮箱里并没发送邮件,请各位帮我看看
我用的的是iis smtp
<?php
$to      = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: [email protected]' . "\r\n" .
   'Reply-To:[email protected]' . "\r\n" .
   'X-Mailer: PHP/' . phpversion();mail($to, $subject, $message, $headers);
?>