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;
    }