首页 > 开发 > PHP > 正文

PHP处理postfix邮件内容的方法

2024-05-04 23:36:17
字体:
来源:转载
供稿:网友

这篇文章主要介绍了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. if (preg_match("/^From: (.*)/"$lines[$i], $matches)) { 
  24. if(strpos($lines[$i],"<")){ 
  25. //the name exist too in from header 
  26. $data = explode('<',$lines[$i]); 
  27. $from = substr(trim($data[1]),0,-1); 
  28. }else
  29. //only the mail 
  30. $from = $matches[1]; 
  31. if (preg_match("/^Date: (.*)/"$lines[$i], $matches)) { 
  32. $date = $matches[1]; 
  33. else { 
  34. // not a header, but message 
  35. $message .= $lines[$i]."/n"
  36. if (trim($lines[$i])=="") { 
  37. // empty line, header section has ended 
  38. $splittingheaders = false; 
  39. $when = date("Y-m-d G:i:s"); 
  40. $data = explode('@',$from); 
  41. $username = $data[0]; 
  42. //记录到数据库 
  43. $sql = "insert into mails ( `username`, `from`, `subject`, `date`, `message`) values ( '$username', '$from', '$subject', '$when', '$message')"
  44. //测试 
  45. file_put_contents("/tmp/mail2.log"$sql); 
  46. ?> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表