문제

I am working on a roundcube project and in my project the user is not allowed to send a text email message. He is allowed to send only HTML email messages. Can anyone tell me where can I find a setting/plugin for achieving this functionality?

도움이 되었습니까?

해결책 2

in the roundcube config.inc.php, there is a setting variable called 'dont_override'. You have to pass an array of settings to this variable which the user cannot override. To disable the plain text message setting, all you have to do is pass the 'htmleditor' config setting as an array element to this variable, like this..

$rcmail_config['dont_override'] = array('htmleditor');

다른 팁

Log in to ROundcube and go to settings -> composing mail.

You can select an HTML preference there

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top