/**
 * Set the email body
 *
 * @param   string  $content  Body of the email
 *
 * @return  Mail  Returns this object for chaining.
 *
 * @since   1.7.0
 */
public function setBody($content)
{
    /*
     * Filter the Body
     * @todo: Check for XSS
     */
    $this->Body = MailHelper::cleanText($content);
    return $this;
}