Top "Laravel-mail" questions

Laravel provides a clean, simple API over the popular SwiftMailer library with drivers for SMTP, Mailgun, SparkPost, Amazon SES, and sendmail, allowing you to quickly get started sending mail through a local or cloud-based service of your choice.

Connection could not be established with host mailtrap.io [php_network_getaddresses: getaddrinfo failed: No such host is known. #0]

I am getting below error: Connection could not be established with host smtp.gmail.com [php_network_getaddresses: getaddrinfo failed: …

php laravel-5.2 laravel-mail
Laravel 5 - How Do You Catch an Mail::send() Error?

I have the following method which sends out an e-mail: Mail::send('emails.configuration_test', array(), function($email)use($request){ $…

laravel laravel-5 laravel-mail
Laravel on Localhost - Connection could not be established with host smtp.gmail.com [Connection timed out #110]

I am trying to use Mailgun 'driver' => env('MAIL_DRIVER', 'mailgun'), 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), …

laravel email mailgun laravel-mail
Laravel mail error: Process could not be started [The system cannot find the path specified. ]

I'm developing a new Laravel application. When I'm using mail to send messages via contact form in my website, I'm …

laravel laravel-mail
Laravel 5.3 - Attach Multiple Files To Mailables

How does one go about attaching multiple files to laravel 5.3 mailable? I can attach a single file easily enough using …

laravel laravel-5 laravel-5.3 laravel-mail
Configuring Emails in Laravel

I am trying to setup emails in my Laravel aplication, I have my env file something like this: MAIL_DRIVER=…

php laravel swiftmailer laravel-mail
Laravel 5.3 Notification Vs Mailable

I am a little confused about whether to use Laravel's Notification or Mailable class. From what I understand, Mailables are …

laravel laravel-5.3 laravel-mail laravel-notification
Laravel 5.3 Password Broker Customization

Does anyone know how to override the functions used within laravel's password broker? I know the docs: https://laravel.com/…

php laravel laravel-5 laravel-authorization laravel-mail
Laravel 5.3 Send Notification to Users without an account

With the Laravel 5.3 Notification feature, I see that the notifications are sent to users like this: $user->notify(new …

laravel laravel-5.3 laravel-mail laravel-notification
Laravel 5.3 How to show Username in Notifications Email

I am trying to add the user's first name in the notification emails. At the moment, Laravel notification emails starts …

laravel notifications laravel-5.3 laravel-mail laravel-notification