Support the ongoing development of Laravel.io →
Configuration Database Mail
Last updated 1 year ago.
0

I use this:

    $mail=DB::table('mail_settings')->first();
	$config = array(
                'driver' => $mail->driver,
                'host' => $mail->host,
                'port' => $mail->port,
                'from' => array('address' => $mail->from_address, 'name' => $mail->from_name),
                'encryption' => $mail->encryption,
                'username' => $mail->username,
                'password' => $mail->password,
                'sendmail' => '/usr/sbin/sendmail -bs',
                'pretend' => false
            );
    Config::set('mail',$config);
Last updated 1 year ago.
0

closca said:

I use this:

   $mail=DB::table('mail_settings')->first();
  $config = array(
               'driver' => $mail->driver,
               'host' => $mail->host,
               'port' => $mail->port,
               'from' => array('address' => $mail->from_address, 'name' => $mail->from_name),
               'encryption' => $mail->encryption,
               'username' => $mail->username,
               'password' => $mail->password,
               'sendmail' => '/usr/sbin/sendmail -bs',
               'pretend' => false
           );
   Config::set('mail',$config);

And it works? I'm basically doing the same thing. But one question remain, when do u update this config values? And do you use laravel mail facade to send emails?

Last updated 1 year ago.
0

I find solution after hours of looking at framework/src/Illuminate witch by the way is quite elegant - congratz Taylor.

There is src/Illuminate/Mail/MailServiceProvider:

	/**
	 * Register the Swift Mailer instance.
	 *
	 * @return void
	 */
	public function registerSwiftMailer()
	{	
		\MyConfig::setUserConfig();

		$config = $this->app['config']['mail'];
	
		$this->registerSwiftTransport($config);

		// Once we have the transporter registered, we will register the actual Swift
		// mailer instance, passing in the transport instances, which allows us to
		// override this transporter instances during app start-up if necessary.
		$this->app['swift.mailer'] = $this->app->share(function($app)
		{
			return new Swift_Mailer($app['swift.transport']);
		});
	}

As you can see code is self explanatory. But be wary of that this is not a facade is just class with static function, registering providers is early step in laravel bootup so you can't use many laravel goodies.

This approach has many drawbacks, e.g. if there is a laravel update in mail provider my 'hack' will be lost.

If any one got better solution, feel free to email me [email protected].

Last updated 1 year ago.
0

I stumbled upon this issue too and just sharing my solution.

On filters.php add the following code

App::before(function($request)
{
	$mail=DB::table('mail_settings')->first();
	$config = array(
		'driver' => $mail->driver,
		'host' => $mail->host,
		'port' => $mail->port,
		'from' => array('address' => $mail->from_address, 'name' => $mail->from_name),
		'encryption' => $mail->encryption,
		'username' => $mail->username,
		'password' => $mail->password,
		'sendmail' => '/usr/sbin/sendmail -bs',
		'pretend' => false
		);
	Config::set('mail',$config);

    // extract config
	extract(Config::get('mail'));

	// create new mailer with new settings
	$transport = Swift_SmtpTransport::newInstance($host, $port);
	// set encryption
	if (isset($encryption)) $transport->setEncryption($encryption);
	// set username and password
	if (isset($username))
	{
		$transport->setUsername($username);
		$transport->setPassword($password);
	}
    // set new swift mailer
	Mail::setSwiftMailer(new Swift_Mailer($transport));
	// set from name and address
	if (is_array($from) && isset($from['address']))
	{
		Mail::alwaysFrom($from['address'], $from['name']);
	}
});
Last updated 1 year ago.
0

I meet the same problem, too. Thanks for sharing this! I think I should not use dynamic config setting.

Last updated 9 years ago.
0

Because I got ideas from this thread.I just want to share my solutions. I've using Laravel 5.1 and just solve this problem. My code may not beautiful, but I want to share the way I solve this problem. My solution is to have one function execute before send mail. I've tested and it's just work.

Here, this is the function.


//$configs variable is an array which keep your mail setting config.

public function overrideMailerConfig($configs){

        Config::set('mail.driver',$configs['driver']);
        Config::set('mail.host',$configs['host']);
        Config::set('mail.port',$configs['port']);
        Config::set('mail.username',$configs['user']);
        Config::set('mail.password',$configs['passwd']);
        Config::set('mail.sendmail',$configs['sendmail']);

        $app = App::getInstance();

        $app['swift.transport'] = $app->share(function ($app) {
            return new TransportManager($app);
        });

        $mailer = new \Swift_Mailer($app['swift.transport']->driver());
        Mail::setSwiftMailer($mailer);
    }
0

palamike said:

Because I got ideas from this thread.I just want to share my solutions. I've using Laravel 5.1 and just solve this problem. My code may not beautiful, but I want to share the way I solve this problem. My solution is to have one function execute before send mail. I've tested and it's just work.

Here, this is the function.


//$configs variable is an array which keep your mail setting config.

public function overrideMailerConfig($configs){

       Config::set('mail.driver',$configs['driver']);
       Config::set('mail.host',$configs['host']);
       Config::set('mail.port',$configs['port']);
       Config::set('mail.username',$configs['user']);
       Config::set('mail.password',$configs['passwd']);
       Config::set('mail.sendmail',$configs['sendmail']);

       $app = App::getInstance();

       $app['swift.transport'] = $app->share(function ($app) {
           return new TransportManager($app);
       });

       $mailer = new \Swift_Mailer($app['swift.transport']->driver());
       Mail::setSwiftMailer($mailer);
   }

Where is this set?

0

Here is my solution for laravel 5.6:


	extract(Config::get('mailtrap-mail'));

	// create new mailer with new settings
	$transport = (new \Swift_SmtpTransport($host, $port))
                       ->setUsername($username)
                       ->setPassword($password)
                       ->setEncryption($encryption);

	\Mail::setSwiftMailer(new \Swift_Mailer($transport));
Last updated 5 years ago.
0

@max saved my day +1

0

Thanks @max help me a lot !!!

Last updated 5 years ago.
0

@max where do i add this code?

0

@max how would I go about changing this code for API based drivers where I will be using api_key instead of username and password ?

0

@jaystabins thank you! It worked.

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.