在PHP中使用Mail函数发送邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在PHP中使用Mail函数发送邮件相关的知识,希望对你有一定的参考价值。

The mail() function allows you to send emails directly from a script. Remember, that most of shared hosting providers require (for security reasons) to use the domain name of your hosting in "FROM" email, e.g. [email protected] for http://yourdomain.com site.
  1. <?php
  2. $subject = 'Test Email';
  3. $body = 'Body of your message here. You can use html tags also, e.g. <br><b>Bold</b>';
  4. $headers = 'From: John Smith'."
  5. ";
  6. $headers .= 'Reply-To: [email protected]'."
  7. ";
  8. $headers .= 'Return-Path: [email protected]'."
  9. ";
  10. $headers .= 'X-Mailer: PHP5'." ";
  11. $headers .= 'MIME-Version: 1.0'." ";
  12. $headers .= 'Content-type: text/html; charset=iso-8859-1'."
  13. ";
  14. mail($to, $subject, $body, $headers);
  15. ?>

以上是关于在PHP中使用Mail函数发送邮件的主要内容,如果未能解决你的问题,请参考以下文章

在PHP中使用Mail函数发送邮件

在循环中使用 php mail() 函数发送 +-200 封电子邮件

我的邮件没有被php函数mail()发送[重复]

PHP 中使用 mail() 函数发送邮件

无法理解为什么我不使用PHP mail()函数向我的主机邮件发送邮件[复制]

如何在php用mail发送邮件