gpt4 book ai didi

templates - 如何从roundcube中的模板或插件获取未读消息的数量?

转载 作者:行者123 更新时间:2023-12-02 22:21:09 24 4
gpt4 key购买 nike

我创建了一个新皮肤,需要在标题中显示一条文本,例如“您有 3 封新邮件”。我如何从模板或插件(如果我需要创建一个)来做到这一点?

谢谢。

最佳答案

好吧,我已经找到了解决方案,并希望在其他人需要它的情况下分享。所以我创建了一个插件,这里是提取未读消息数量所需的插件代码:

class test extends rcube_plugin{
public $task='mail';

function init(){
$this->register_handler('plugin.unreadmessage',array($this, 'unreadmessage_handler'));
}
function unreadmessage_handler(){
$rcmail = rcmail::get_instance();
$count=$rcmail->imap->messagecount('INBOX', 'UNSEEN');
return $count
}
}

免费使用!

关于templates - 如何从roundcube中的模板或插件获取未读消息的数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7978964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com