Config mailer parameters from model - Yii2

妖精的绣舞 提交于 2020-01-17 05:36:08

问题


im using Yii2 and i want to config mailer parameters geting the data from db.

Example:

'mailer' => [ 
            'class' => 'yii\swiftmailer\Mailer',
            'enableSwiftMailerLogging' =>true,
            'useFileTransport' => false,
            'transport' => [
                'class' => 'Swift_SmtpTransport',
                'host' => $model->getSmtpHost(),
                'username' => $model->getSmtpUser(),
                'password' => $model->getSmtpPass(),
                'port' => $model->getSmtpPort(),
                'encryption' => $model->getSmtpEncryption(),
            ],
        ]

but from web.php can't call methods from models, i tried but throws a error


回答1:


Yii initialized application from this config. You can't use yii2 before yii2 is runned.

$application = new yii\web\Application($config);

As alternative you can configure mailer after create application in bootstrap.php file like this: Yii::$app->set('mailer', (new MailerConfigurator())->getConfig());




回答2:


thanks to @Onedev.Link and @arogachev for his answer.that gave me an idea and i solve the problem.

i solve the problem modyfing swiftmailer component, in Mailer.php added this:

use app\models\Administracion; //The model i needed for access bd
 class Mailer extends BaseMailer
{
...
...
//this parameter is for the config (web.php)
public $CustomMailerConfig = false;
...
...
...
/**
     * Creates Swift mailer instance.
     * @return \Swift_Mailer mailer instance.
     */
    protected function createSwiftMailer()
    {
        if ($this->CustomMailerConfig) {
            $model = new Administracion();

            $this->setTransport([
                'class' => 'Swift_SmtpTransport',
                'host' => $model->getSmtpHost(),
                'username' => $model->getSmtpUser(),
                'password' => $model->getSmtpPass(),
                'port' => $model->getSmtpPort(),
                'encryption' => $model->getSmtpEncryption(),
            ]);
        }

        return \Swift_Mailer::newInstance($this->getTransport());
    }

And in Web.php added this:

'mailer' => [ 
            'class' => 'yii\swiftmailer\Mailer',
            'enableSwiftMailerLogging' =>true,
            'CustomMailerConfig' => true, //if its true use the bd config else set the transport here
            'useFileTransport' => false,
],


来源:https://stackoverflow.com/questions/32511386/config-mailer-parameters-from-model-yii2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!