如何使用 IMAP 和 IMAP 保存电子邮件中的图像附件PHP?
我已经成功编写了连接到我的邮件服务器并检索所有新邮件的标头和正文的脚本。我想更进一步检测附件是否存在(仅图像),如果存在,则下载到服务器。
如何使用 PHP 和 PHP 来解决这个问题? IMAP?
提前致谢
I've successfully written script that connects to my mail server and retrieves the headers and bodies of all new messages. I want to take it one step further to detect if attachment exists (images only), if so, download to server.
How to go about this using PHP & IMAP?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
KimNyholm 发布了一组 imap 客户端方法,其中包含您所要求的目标:
https://github.com/KimNyholm/ubuntu- web-development/blob/master/php/imapClient.php
他编写这段代码是因为缺乏处理 php imap 消息的完整教程和代码示例,正如他在这里解释的那样:http://kimnyholm.com/a-simple-imap-mail-reader-client/ 和他的一些代码基于 drupal 库。
我附上执行您提到的步骤的方法的摘录,我希望它能解决问题,即使我看到它不是最近的:
检查其中的附件和图像:
在这里,他将数据保存到临时目录并下载它:
KimNyholm published an imap client set of methods that enclose the goals you ask:
https://github.com/KimNyholm/ubuntu-web-development/blob/master/php/imapClient.php
He wrote this code because of the lack of full tutorials and code examples to process php imap messages, as he explains here: http://kimnyholm.com/a-simple-imap-mail-reader-client/ and based some of his code in drupal libraries.
I enclose an extract of the methods that perform the steps you menction, I hope it solves the question even though I see it's not exactly recent:
Check for attachments and images amongst them:
Here he saves the data to a tempdir and download it: