在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.
<?php $subject = 'Test Email'; $headers = 'From: John Smith'." "; "; "; $headers .= 'X-Mailer: PHP5'." "; $headers .= 'MIME-Version: 1.0'." "; $headers .= 'Content-type: text/html; charset=iso-8859-1'." "; ?>
以上是关于在PHP中使用Mail函数发送邮件的主要内容,如果未能解决你的问题,请参考以下文章
在循环中使用 php mail() 函数发送 +-200 封电子邮件