yii\mail\BaseMailer::getViewPath PHP Méthode

getViewPath() public méthode

public getViewPath ( ) : string
Résultat 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;
    }