/**
 * Sets message type to HTML
 *
 * @param   boolean  $ishtml  Boolean true or false.
 *
 * @return  Mail  Returns this object for chaining.
 *
 * @since   3.1.4
 */
public function isHtml($ishtml = true)
{
    parent::isHTML($ishtml);
    return $this;
}