In both Horde and RoundCube the default mode for writting emails is plain text and not HTML.
To enable HTML we need to edit one file for each program.
RoundCube
For roundcube on cPanel the file to be edited is: /usr/local/cpanel/base/3rdparty/roundcube/config/config.inc.php
Locate the following:
// compose html formatted messages by default
// 0 - never,
// 1 - always,
// 2 - on reply to HTML message,
// 3 - on forward or reply to HTML message
// 4 - always, except when replying to plain text message
$config['htmleditor'] = 0;
and change
$config['htmleditor'] = 0;
to
$config['htmleditor'] = 1;
This will result in the RoundCube Webmail to switch the writing mode from plain text to HTML:
Horde
For Horde Webmail on cPanel the file to be edited in order to enable HTML mode while composing messages: /usr/local/cpanel/base/horde/imp/config/mime_drivers.php
In it locate the following file:
/* HTML driver settings */
'html' => array(
/* NOTE: Inline HTML display is turned OFF by default. */
'inline' => false,
'handles' => array(
'text/html'
),
'icons' => array(
'default' => 'html.png'
),
'limit_inline_size' => 1048576,
/* Check for phishing exploits? */
'phishing_check' => true
),
You can change the following line:
'inline' => false,
to:
'inline' => true,
This will result in the Horde Webmail to switch the writing mode from plain text to HTML: