M
M
Mokhirjon Naimov2014-12-14 20:22:22
Email
Mokhirjon Naimov, 2014-12-14 20:22:22

How to properly configure mail in Laravel (4.2)?

app/config/mail.php:

'driver' => 'smtp',
'host' => 'mail.mydomain.com',
'port' => 25,
'from' => array('address' => '[email protected]', 'name' => 'MyDomain'),
'encryption' => 'tls',
'username' => '[email protected]',
'password' => 'mypass',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,

How to fix this situation?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rikcon, 2014-12-14
@zvermafia

'from' => array('address' => null, 'name' => null),
Did you mess it up or do you have it in your config?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question