Codeigniter使用图像作为附件访问电子邮件(pop3 imap)

时间:2013-11-25 11:58:06

标签: php codeigniter imap pop3

我想下载以从我的电子邮件中获取以下信息

sender
sender_email_address
subject
Message
attachments = array(
       all attachments
)

任何图书馆?建议?链接?

2 个答案:

答案 0 :(得分:1)

我使用过https://github.com/EllisLab/CodeIgniter/wiki/IMAP并且效果很好。

祝你好运

答案 1 :(得分:0)

这是可以使用的库..

http://garrettstjohn.com/entry/reading-emails-with-php/

加上访问图书馆,提取电子邮件及其附件

http://garrettstjohn.com/entry/extracting-attachments-from-emails-with-php/

这个提取中缺少的东西是处理图像的功能,所以我必须这样做......

function _process_img($attach, $ext){

    $directory = "uploads";

    $path=realpath(APPPATH."../".$directory);
    $file_name="any_name_you_want_to_give".".".$ext;

    $file=$directory.$file_name;
    if(file_put_contents($path."/".$file_name, $attach)) return $file;
}

希望它能帮助别人......