我想将退回的电子邮件转发到 php 脚本来处理它们。我在用。
#!/usr/bin/php -q
<?php
// read from stdin
$fd = fopen("php://stdin", "r");
$email = "";
while (!feof($fd)) {
$email .= fread($fd, 1024);
}
fclose($fd);
// handle email
$lines = explode("\n", $email);
// empty vars
$from = "";
$subject = "";
$headers = "";
$message = "";
$splittingheaders = true;
for ($i=0; $i < count($lines); $i++) {
if ($splittingheaders) {
// this is a header
$headers .= $lines[$i]."\n";
// look out for special headers
if (preg_match("/^Subject: (.*)/", $lines[$i], $matches)) {
$subject = $matches[1];
}
if (preg_match("/^From: (.*)/", $lines[$i], $matches)) {
$from = $matches[1];
}
} else {
// not a header, but message
$message .= $lines[$i]."\n";
}
if (trim($lines[$i])=="") {
// empty line, header section has ended
$splittingheaders = false;
}
}
?>
完美运行!但是如何收集退回邮件中的“收件人”字段?我试过只添加一个 $to 变量,但它不起作用。
任何帮助都会很棒,
谢谢,
编辑:实际上我需要在邮件正文中获取“TO”字段。- 它退回的电子邮件。如何拆分邮件正文以获取特定信息?我是否应该使用此人的电子邮件创建一个特殊的标题,以便更容易获取此信息?