小编典典

如何使用PHP发送电子邮件?

php

我在网站上使用PHP,并且想添加电子邮件功能。

我已经安装了WAMPSERVER。

如何使用PHP发送电子邮件?


阅读 427

收藏
2020-05-26

共1个答案

小编典典

使用PHP的mail()功能是可能的。请记住,邮件功能在本地服务器上不起作用。

<?php
$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);
?>
2020-05-26