Helper\Mailer\Smtp::setMail PHP Method

setMail() public method

设置邮件信息
public setMail ( string $subject, string $body ) : boolean
$subject string 邮件主体内容,可以是纯文本,也可是是HTML文本
$body string 邮件主题
return boolean
    public function setMail($subject, $body)
    {
        $this->_subject = base64_encode($subject);
        $this->_body = base64_encode($body);
        return true;
    }