yii\mail\BaseMailer::getViewPath PHP 메소드

getViewPath() 공개 메소드

public getViewPath ( ) : string
리턴 string the directory that contains the view files for composing mail messages Defaults to '@app/mail'.
    public function getViewPath()
    {
        if ($this->_viewPath === null) {
            $this->setViewPath('@app/mail');
        }
        return $this->_viewPath;
    }