如何从php和localhost发送电子邮件

时间:2013-09-23 13:42:07

标签: php email

我正在开发一个Web应用程序,我将添加一个发送电子邮件的功能。我是php新手,任何人都可以建议实现此功能的任何资源。 我经历了一些教程,但无法理解它们。 感谢..

3 个答案:

答案 0 :(得分:1)

PHP具有内置函数,用于发送邮件,mail();你可以在这里阅读更多相关信息:http://php.net/manual/en/function.mail.php

<?php
$message = "This is the message content";
mail('user@example.com', 'My Subject', $message);
?>

答案 1 :(得分:0)

PHP有一个内置的mail()函数,可以发送电子邮件:

http://php.net/manual/en/function.mail.php

答案 2 :(得分:0)

来自PHP documentation

<?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);
?>