当前位置:Gxlcms > PHP教程 > PHP使用mail()发送邮件

PHP使用mail()发送邮件

时间:2021-07-01 10:21:17 帮助过:5人阅读

之前我们提供了如何使用 Mandrill 发送邮件的 PHP 代码片段,但是如果你不想使用第三方服务,那么可以使用下面的 PHP 代码片段。

  1. function send_mail($to,$subject,$body)
  2. {
  3. $headers = "From: KOONK\r\n";
  4. $headers .= "Reply-To: blog@koonk.com\r\n";
  5. $headers .= "Return-Path: blog@koonk.com\r\n";
  6. $headers .= "X-Mailer: PHP5\n";
  7. $headers .= 'MIME-Version: 1.0' . "\n";
  8. $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
  9. mail($to,$subject,$body,$headers);
  10. }

用法:

  1. $to = "admin@koonk.com";
  2. $subject = "This is a test mail";
  3. $body = "Hello World!";
  4. send_mail($to,$subject,$body);
  5. ?>

发送邮件, PHP, mail

人气教程排行