luya\components\Mail::setSubject PHP Method

setSubject() public method

Set the mail message subject of the mailer instance
public setSubject ( string $subject ) : Mail
$subject string The subject message
return Mail
    public function setSubject($subject)
    {
        $this->getMailer()->Subject = $subject;
        return $this;
    }