Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个圆形立方体项目,在我的项目中,不允许用户发送短信。他只能发送 HTML 电子邮件。谁能告诉我在哪里可以找到实现此功能的设置/插件?
登录 ROundcube 并转到设置 -> 撰写邮件。
您可以在此处选择 HTML 首选项
在roundcube config.inc.php 中,有一个名为“dont_override”的设置变量。您必须将一组设置传递给用户无法覆盖的此变量。要禁用纯文本消息设置,您只需将“htmleditor”配置设置作为数组元素传递给此变量,如下所示。
$rcmail_config['dont_override'] = array('htmleditor');