ItSolutionStuff.com

How to Send Mail using Sendgrid in Laravel?

By Hardik Savani • November 5, 2023
Laravel Sendgrid

Sendgrid is very popular API to send email from our laravel application. It is very fast to send mail and also you can track sended mail. Tracking email is very important feature of Sendgrid api and you can also see how much user open your mail, click on your mail too. In this post i would like to show you how to setting of Sendgrid in our laravel 5 application. In this example you can learn to send simple mail using Sendgrid site. If you are use Sendgrid for sending email then you can save loading time and you can get mail fast.

First we will add configration on mail. i added my gmail account configration. so first open .env file and bellow code:

.env

MAIL_DRIVER=smtp

MAIL_HOST=smtp.sendgrid.net

MAIL_PORT=587

MAIL_USERNAME=sendgridusername

MAIL_PASSWORD=sendgridpassword

Ok, now we need to add secret and domain of sendgrid api configration. So first create new account in sendgrid.com if you don't have before. After registeration active your sendgrid account and set username and password

Now we are ready to send mail for test so first create test route for email sending.

app/Http/routes.php

Route::get('mail', 'HomeController@mail');

Ok, now add mail function in HomeController.php file so add this way :

app/Http/Controllers/HomeController.php

public function mail()

{

$user = User::find(1)->toArray();

Mail::send('emails.mailEvent', $user, function($message) use ($user) {

$message->to($user->email);

$message->subject('Sendgrid Testing');

});

dd('Mail Send Successfully');

}

At last create email template file for send mail so let's create mailEvent.blade.php file in emials folder.

resources/views/emails/mailEvent.blade.php

 

Hi, sendgrid testing.

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Mailchimp API Integration Example

Read Now →

How to Send Mail in PHP Laravel?

Read Now →

Laravel Mailgun Setup Example

Read Now →

How to create Event for Mail sending in Laravel 5.2?

Read Now →

How to Send Mail using Gmail SMTP in Laravel?

Read Now →