I have a simple application set up on my local machine using Laravel Homestead.
I am trying to get the default Mail class to work but I am having no luck!
My mail.php file looks like this:
return array(
'driver' => 'mail',
'host' => '',
'port' => 587,
'from' => array('address' => 'admin@devplatform.app', 'name' => 'Dev Platform Admin'),
'encryption' => "",
'username' => null,
'password' => null,
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
);
And I have this in my controller:
Mail::send('emails.activate', $data, function($message) use ($email, $username) {
$message->to($email, $username)->subject('Activate Account!');
});
I get no errors in my laravel.log file.
I also had problems with that, so i changed to smtp. You make an account to any mail system [i recommend gmail] and you add login information in config. You can modify the sender name and email on the function above, so you don't have to worry that your users will recive mails from whateveraccount@gmail.com, you can make them recive mail from noreply@yoursite.com.
Still, if you prefer the default mail, i suggest you to contact your hosting provider. They might have some restrictions and may be able to walk you through configuring your email.
Thanks for your reply. I ended up changing to Gmail smtp and it works fine, but I'm still curious as to why it wouldn't work with the standard php mail function.
i believe homestead doesn't come with sendmail installed, so php can't send email's directly (as per default config).
So you will either have to ssh to your VM and install sendmail via the package manager, or edit the homestead.rb to do it for you, or even create your own default vm box based on homestead.
try to use this , it work for me http://code.tutsplus.com/tutorials/sending-emails-with-laravel-4-gmail--net-36105
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community