Founded
$config = array(
'driver' => 'smtp',
'host' => 'smtp.mail.com',
'port' => 587,
'from' => array('address' => null, 'name' => null),
'encryption' => 'tls',
'username' => '[email protected]',
'password' => 'yourpass',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false
);
Config::set('mail',$config);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community