如何以编程方式访问 GMAIL 附件?
目前,我已经注册了一项订阅服务,该服务以电子邮件附件的形式向我发送数据……它是一个 zip 文件。我每天都会收到一份文件。
我想要的是一个每天运行的程序,从 Gmail 下载附件,然后打开 zip 文件并处理其内容。
我将在其上运行此应用程序的服务器正在运行 Ubuntu,
我正在寻找可以执行此操作的现有工具或我可以自己实施的策略。
Currently I've signed up for a subscription service that sends me data as an email attachment...it's a zip file. I get a file everyday.
What I want is a program that runs every day that downloads the attachment from Gmail and then opens the zip file and processes it's contents.
The server I would be running this app on is running Ubuntu
I'm looking for either existing tools that will do this or a strategy that I can implement myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用JavaMail 连接到GMail 的imap 或pop3 接口,然后获取电子邮件并检索附件。
You can use JavaMail to connect to GMail's imap or pop3 interface, then fetch emails and retrieve attachments.