当我在php中使用imap获取电子邮件时,我会收到电子邮件正文内容,但我无法提取粘贴但未附加到电子邮件正文中的内嵌图像。
答案 0 :(得分:2)
在电子邮件内容的正文中搜索图像。
假设您的电子邮件正文为$body
,那么您可以使用preg_match获取图片网址。
使用此preg_match表达式来获取图像源。
preg_match('/< *img[^>]*src *= *["\']?([^"\']*)/i', $body, $matches);
答案 1 :(得分:1)
嘿,我想我得到了一个解决方案
<?php
$hostname = '{myserver/pop3/novalidate-cert}INBOX';
$username = 'username';
$password = 'password';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Tiriyo: ' . imap_last_error());
$msgno = 0; //message id
$no_of_occurences = 0;
$intStatic = 2;//to initialize the mail body section
$decode = imap_fetchbody($mbox, $msgno , "");
$no_of_occurences = substr_count($decode,"Content-Transfer-Encoding: base64");//to get the no of images
if($no_of_occurences > 0){
for($i = 0; $i < $no_of_occurences; $i++){
$strChange = strval($intStatic+$i);
$decode = imap_fetchbody($mbox, $msgno , $strChange);//to get the base64 encoded string for the image
$data = base64_decode($decode);
$fName = time()."_".$strChange . '.gif';
$file = $fName;
$success = file_put_contents($file, $data); //creates the physical image
}
}
imap_close($inbox);
?>