2012-09-27 7 views
1

나는 파이프 이메일 발송자로부터 정보를받은 PHP 스크립트를 가지고 있습니다.PHP 전자 메일 파이프 라인 매개 변수를 사용하여

현재 모든 것이 완벽하게 작동합니다. 난 그냥 이메일에서 내가 원하는 데이터 만 수신하는 수신 된 매개 변수를 조작 할

스크립트는 다음과 같습니다

#!/usr/local/bin/php -q 

<?PHP 
//get email 
$fd = fopen("php://stdin", "r"); 
$email_content = ""; 
while (!feof($fd)) { 
$email_content .= fread($fd, 1024); 
} 
fclose($fd); 
//get email end 


//get variables from email start 


//split the string into array of strings, each of the string represents a single line, recieved 
$lines = explode("\n", $email_content); 

// initialize variable which will assigned later on 
$from = ""; 
$subject = ""; 
$headers = ""; 
$message = ""; 
$is_header= true; 

//loop through each line 
for ($i=0; $i < count($lines); $i++) { 
if ($is_header) { 
// hear information. instead of main message body, all other information are here. 
$headers .= $lines[$i]."\n"; 

// Split out the subject portion 
if (preg_match("/^Subject: (.*)/", $lines[$i], $matches)) { 
$subject = $matches[1]; 
} 
//Split out the sender information portion 
if (preg_match("/^From: (.*)/", $lines[$i], $matches)) { 
$from = $matches[1]; 
} 
} else { 
// content/main message body information 
$message .= $lines[$i]."\n"; 
} 
if (trim($lines[$i])=="") { 
// empty line, header section has ended 
$is_header = false; 
} 
} 
현재

, 변수 $ 이메일 반환 :

"Person name" <[email protected]> 

어떻게 전자 메일 부분 만 가져 오도록이 변수를 수정합니까?

둘째, 변수 메시지는 아래와 같은 형식 및 태그를 포함하는 데이터의 전체 더미를 반환

This is a multipart message in MIME format. 

------=_NextPart_000_0031_01CD9CA8.9BE5F470 
Content-Type: text/plain; 
    charset="us-ascii" 
Content-Transfer-Encoding: 7bit 

testing 


------=_NextPart_000_0031_01CD9CA8.9BE5F470 
Content-Type: text/html; 
    charset="us-ascii" 
Content-Transfer-Encoding: quoted-printable 

<html xmlns:v=3D"urn:schemas-microsoft-com:vml" = xmlns:o=3D"urn:schemas-microsoft-com:office:office" = xmlns:w=3D"urn:schemas-microsoft-com:office:word" = xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" = xmlns=3D"http://www.w3.org/TR/REC-html40"><head><META = HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Dus-ascii"><meta name=3DGenerator content=3D"Microsoft Word 14 = (filtered medium)"><style><!-- 
/* Font Definitions */ 
@font-face 
    {font-family:Calibri; 
    panose-1:2 15 5 2 2 2 4 3 2 4;} 
/* Style Definitions */ 
p.MsoNormal, li.MsoNormal, div.MsoNormal 
    {margin:0cm; 
    margin-bottom:.0001pt; 
    font-size:11.0pt; 
    font-family:"Calibri","sans-serif";} 
a:link, span.MsoHyperlink 
    {mso-style-priority:99; 
    color:blue; 
    text-decoration:underline;} 
a:visited, span.MsoHyperlinkFollowed 
    {mso-style-priority:99; 
    color:purple; 
    text-decoration:underline;} 
span.EmailStyle17 
    {mso-style-type:personal-compose; 
    font-family:"Calibri","sans-serif"; 
    color:windowtext;} 
.MsoChpDefault 
    {mso-style-type:export-only; 
    font-family:"Calibri","sans-serif";} 
@page WordSection1 
    {size:612.0pt 792.0pt; 
    margin:72.0pt 72.0pt 72.0pt 72.0pt;} 
div.WordSection1 
    {page:WordSection1;} 
--></style><!--[if gte mso 9]><xml> 
<o:shapedefaults v:ext=3D"edit" spidmax=3D"1026" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext=3D"edit"> <o:idmap v:ext=3D"edit" data=3D"1" /> </o:shapelayout></xml><![endif]--></head><body lang=3DEN-US link=3Dblue = vlink=3Dpurple><div class=3DWordSection1><p class=3DMsoNormal>Ninety = nine<o:p></o:p></p></div></body></html> 
------=_NextPart_000_0031_01CD9CA8.9BE5F470-- 

. 내 몸의 내용 만 일반 텍스트로 추출하고 싶습니다. 그래서 이메일 본문이 단순히 '테스트'라면 변수가 테스트를 반환하기를 원합니까?

항상 감사드립니다.

다시 한번 감사드립니다. @hakra

#!/usr/local/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; 
} 
} 



$buffer = [$email] // Mail Content from Pipe 

$mail = mailparse_msg_create(); 
mailparse_msg_parse($mail, $buffer); 
$struct = mailparse_msg_get_structure($mail); 

foreach ($struct as $st) { 
    $section = mailparse_msg_get_part($mail, $st); 
    $info = mailparse_msg_get_part_data($section); 
} 

?> 

답변

1

당신은 imap_rfc822_parse_adrlistDocs 또는 mailparse_rfc822_parse_addressesDocs와 주소 라인을 구문 분석 할 수에 따라


편집.

$buffer = [...] // Mail Content from Pipe 

$mail = mailparse_msg_create(); 
mailparse_msg_parse($mail, $buffer); 
$struct = mailparse_msg_get_structure($mail); 

foreach ($struct as $st) { 
    $section = mailparse_msg_get_part($mail, $st); 
    $info = mailparse_msg_get_part_data($section); 

    print_r($info); 
} 
+0

@Smudger :

가 전자 메일 메시지의 본문을 구문 분석하려면 Mail Parse extensionDocs을 활용할 수있는 코드 예제를 바로 PHP 매뉴얼에서, 나는 당신이 당신의 읽기을 제안합니다. 나는 그 직업을위한 도서관이 있다는 것을 당신에게 보여주기 위해 그것을 가리키고있었습니다. – hakre