使用PHP的
mail()功能是可能的。请记住,邮件功能在本地服务器上不起作用。
<?php$to = 'nobody@example.com';$subject = 'the subject';$message = 'hello';$headers = 'From: webmaster@example.com' . "rn" . 'Reply-To: webmaster@example.com' . "rn" . 'X-Mailer: PHP/' . phpversion();mail($to, $subject, $message, $headers);?>



