将邮件标记为未读

发布于 2024-12-15 23:28:14 字数 251 浏览 0 评论 0原文

如何将电子邮件标记为未读?我知道我可以以只读方式打开流,但在某些情况下我需要操作消息(标记为已查看、移动到不同的文件夹等),因此我需要读取/写入流。我还了解“Seen”标志以及如何删除它。

那么有没有办法在将电子邮件标记为已读后将其标记为未读呢?

以下是从邮件中删除“已看到”标志的代码:

imap_clearflag_full($this->mbox, $mId, '\\Seen', ST_UID);

How do I mark a email as unread? I know I can open the stream as read only, but on some occasions I need to manipulate the message (mark as seen, move to a different folder, etc.), so I need the stream to be read/write. I also know about the "Seen" flag and how to remove it.

So is there a way to mark an email as unread after it has been marked as read?

Here is the code which is removing the 'Seen' flag from the mail:

imap_clearflag_full($this->mbox, $mId, '\\Seen', ST_UID);

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

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

发布评论

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

评论(4

第七度阳光i 2024-12-22 23:28:14

这适用于 Gmail,已验证:

imap_clearflag_full($mbox, $i, "\\Seen \\Recent");
imap_expunge($mbox);

This works for Gmail, verified:

imap_clearflag_full($mbox, $i, "\\Seen \\Recent");
imap_expunge($mbox);
挽心 2024-12-22 23:28:14

您是否尝试过:

imap_clearflag_full($imap_connection, $message, "//Seen");

不要忘记关闭连接。

此处未测试,但可能有效..

Have you tried:

imap_clearflag_full($imap_connection, $message, "//Seen");

Don't forgot to close the connection.

Not tested here, but may work..

合久必婚 2024-12-22 23:28:14

尝试下面的代码:

imap_clearflag_full($inbox_connection, $email_number, "\\Seen");

Try code below:

imap_clearflag_full($inbox_connection, $email_number, "\\Seen");
清风不识月 2024-12-22 23:28:14
imap_setflag_full($connection, $MailUid, '\\Seen', ST_UID);
imap_setflag_full($connection, $MailUid, '\\Seen', ST_UID);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文