/**
 * Set the email subject
 *
 * @param   string  $subject  Subject of the email
 *
 * @return  Mail  Returns this object for chaining.
 *
 * @since   1.7.0
 */
public function setSubject($subject)
{
    $this->Subject = MailHelper::cleanLine($subject);
    return $this;
}