如何在数据库中相应保存gmail电子邮件

发布于 2024-11-26 16:21:37 字数 219 浏览 0 评论 0原文

我想要一个脚本,可以使用 php 从 mysql 数据库中的帐户保存 gmail 电子邮件。邮件(无论是新邮件还是回复邮件)如果主题相同,将被标记为同一类别。这与 gmail 或 yahoo mail 的方式相同。

据我所知,gmail IMAP 不提供跟踪回复邮件的功能。

我应该使用哪个 API 或其他什么?

该脚本将继续运行。

我需要为此使用计划任务吗?

i want to have a script that will save gmail emails from an account in mysql db using php. Mails(both freshly new and reply ones) will be marked to be in the same category if they have the same subject. That is just the same way in gmail or yahoo mail.

So far as I know gmail IMAP does not give the facility to track which are the reply mails.

Which API or whatever should I use??

The script will keep running.

Do I need to use scheduled task for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

怎会甘心 2024-12-03 16:21:37

我还没有处理过这个问题,但当我谷歌一下时,发现 GMAIL 提供了 IMAP 扩展 API。您可以选择访问 Gmail 线程ID:X-GM-THRID

I haven't worked with that, but as i Google around, it turns out GMAIL provides IMAP Extensions API. And there you have an option to Access to the Gmail thread ID: X-GM-THRID

蓝眼睛不忧郁 2024-12-03 16:21:37

您拨打的回复电子邮件存储在已发送邮件文件夹中,因此只需使用 IMAP 下载即可。

您可以使用 In-Reply-To:References: 标头跟踪电子邮件的组合方式。使用主题是不可靠的。

The reply emails as you call them are stored in the sent-mail folder, so just download them with IMAP.

You can track how emails go together using the In-Reply-To: and References: headers. Using the subject is not reliable.

长不大的小祸害 2024-12-03 16:21:37

@sof_user :每封邮件的标题中都会有 message_id 。 google 跟踪带有 id 的电子邮件,如果是回复,则 IN-REPLAY-TO 将具有相同的 id。

@sof_user : every mail will have message_id in the header. google tracing the email with the id, if it is reply, then IN-REPLAY-TO will have the same id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文