当前位置导航:炫浪网>>网络学院>>网页制作>>PHP教程

一个发送HTML邮件的PHP函数

  写了一个简单的发送HTML邮件的PHP函数。

  函数说明:send_mail("发件人地址", "收件人地址", "邮件主题", "邮件正文");

  示例:

  1. send_mail($from, [email protected], "这是邮件的主题", "<html><head></head><body><p><font color=red>这是邮件正文</font></p></body></html>"); 


  代码如下:
  1. <?php     
  2. function send_mail($from$to$subject$message)     
  3. {     
  4.     if ($from == "")     
  5.     {     
  6.         $from = '吕滔 <[email protected]>';//发件人地址     
  7.     }     
  8.     $headers = 'MIME-Version: 1.0' . "\r\n";     
  9.     $headers .= 'Content-type: text/html; charset=gb2312' . "\r\n";     
  10.     $headers .= 'From: ' . $from . "\r\n";     
  11.     mail($to$subject$message$headers);     
  12. }     
  13. ?>   
相关内容
赞助商链接