我正在开发一个 Web 应用程序,我将添加一个发送电子邮件的功能。我是 php 新手,任何人都可以建议任何资源来实现此功能。我浏览了一些教程,但无法理解它们。谢谢..
问问题
663 次
3 回答
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);
?>
于 2013-09-23T13:48:38.263 回答
0
PHP 有一个内置的 mail() 函数可以发送电子邮件:
于 2013-09-23T13:45:59.927 回答
0
从PHP 文档:
<?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);
?>
于 2013-09-23T13:46:53.443 回答