当前位置:首页 > PHP教程 > php应用 > 列表

PHP处理postfix邮件内容的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-28 11:53:28 浏览: 评论:0 

这篇文章主要介绍了PHP处理postfix邮件内容的方法,涉及php读取、正则匹配邮件内容的相关技巧,需要的朋友可以参考下,本文实例讲述了PHP处理postfix邮件内容的方法,分享给大家供大家参考,具体如下:

  1. <?php 
  2. //从输入读取到所有的邮件内容 
  3. $email = ""
  4. $fd = fopen("php://stdin""r"); 
  5. while (!feof($fd)) { 
  6.  $email .= fread($fd, 1024); 
  7. fclose($fd); 
  8. //记录所有的内容,测试 
  9. file_put_contents("/tmp/mail/".time(), $email); 
  10. //处理邮件 
  11. $lines = explode("\n"$email); 
  12. // empty vars 
  13. $from = ""
  14. $date = ""
  15. $subject = ""
  16. $message = ""
  17. $splittingheaders = true; 
  18. for ($i=0; $i<count($lines); $i++) { 
  19.  if ($splittingheaders) { 
  20.   // look out for special headers 
  21.   if (preg_match("/^Subject: (.*)/"$lines[$i], $matches)) { 
  22.    $subject = $matches[1]; 
  23.   } 
  24.   if (preg_match("/^From: (.*)/"$lines[$i], $matches)) { 
  25.    if(strpos($lines[$i],"<")){ 
  26.     //the name exist too in from header 
  27.     $data = explode('<',$lines[$i]); 
  28.     $from = substr(trim($data[1]),0,-1); 
  29.    }else
  30.     //only the mail 
  31.     $from = $matches[1]; 
  32.    } 
  33.   } 
  34.   if (preg_match("/^Date: (.*)/"$lines[$i], $matches)) { 
  35.    $date = $matches[1]; 
  36.   } 
  37.  } else { 
  38.   // not a header, but message 
  39.   $message .= $lines[$i]."\n"
  40.  } 
  41.  if (trim($lines[$i])=="") { 
  42.   // empty line, header section has ended 
  43.   $splittingheaders = false; 
  44.  } 
  45. $when = date("Y-m-d G:i:s"); 
  46. $data = explode('@',$from); 
  47. $username = $data[0]; 
  48. //记录到数据库 
  49. $sql = "insert into mails ( `username`, `from`, `subject`, `date`, `message`) values ( '$username', '$from', '$subject', '$when', '$message')"
  50. //测试 
  51. file_put_contents("/tmp/mail2.log"$sql); 
  52. ?>

Tags: PHP邮件内容 postfix

分享到: