我正在开发一个Web应用程序,我将添加一个发送电子邮件的功能。我是php新手,任何人都可以建议实现此功能的任何资源。 我经历了一些教程,但无法理解它们。 感谢..
答案 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()函数,可以发送电子邮件:
答案 2 :(得分:0)
<?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);
?>