Laravel 7 Send Email Example

Laravel 7 Send Email Example

In this post we will give you information about Laravel 7 Send Email Example. Hear we will give you detail about Laravel 7 Send Email ExampleAnd how to use it also give you demo for it if it is necessary.

In this tutorial we will cover an laravel 7 send mail example smtp. i would like to show you send email in laravel 7. i would like to show you laravel 7 send email smtp example. In this article, we will implement a laravel 7 send mail example. follow bellow step for send mail in laravel 7 example.

Laravel 7 provide mail class to send email. you can use several drivers for sending email in laravel 7. you can use smtp, Mailgun, Postmark, Amazon SES, and sendmail. you have to configure on env file what driver you want to use.

In this tutorial, i will give you step by step instruction to send email in laravel 7. you can create blade file design and also with dynamic information for mail layout. so let’s see step by step guide and send email to your requirement.

Step 1: Make Configuration

In first step, you have to add send mail configuration with mail driver, mail host, mail port, mail username, mail password so laravel 7 will use those sender details on email. So you can simply add as like following.

.env

MAIL_DRIVER=smtp

MAIL_HOST=smtp.gmail.com

MAIL_PORT=587

MAIL_USERNAME=mygoogle@gmail.com

MAIL_PASSWORD=rrnnucvnqlbsl

MAIL_ENCRYPTION=tls

Step 2: Create Mail

In this step we will create mail class MyTestMail for email sending. Here we will write code for which view will call and object of user. So let’s run bellow command.

php artisan make:mail MyTestMail

app/Mail/MyTestMail.php

<?php

namespace AppMail;

use IlluminateBusQueueable;

use IlluminateMailMailable;

use IlluminateQueueSerializesModels;

use IlluminateContractsQueueShouldQueue;

class MyTestMail extends Mailable

{

use Queueable, SerializesModels;

public $details;

/**

* Create a new message instance.

*

* @return void

*/

public function __construct($details)

{

$this->details = $details;

}

/**

* Build the message.

*

* @return $this

*/

public function build()

{

return $this->subject('Mail from ItSolutionStuff.com')

->view('emails.myTestMail');

}

}

Also see:Laravel 7 CRUD Example | Laravel 7 Tutorial For Beginners

Step 3: Create Blade View

In this step, we will create blade view file and write email that we want to send. now we just write some dummy text. create bellow files on “emails” folder.

resources/views/emails/myTestMail.blade.php

<!DOCTYPE html>

<html>

<head>

<title>ItsolutionStuff.com</title>

</head>

<body>

<h1>{{ $details['title'] }}</h1>

<p>{{ $details['body'] }}</p>

<p>Thank you</p>

</body>

</html>

Step 4: Add Route

Now at last we will create “MyTestMail” for sending our test email. so let’s create bellow web route for testing send email.

routes/web.php

Route::get('send-mail', function () {

$details = [

'title' => 'Mail from ItSolutionStuff.com',

'body' => 'This is for testing email using smtp'

];

Mail::to('your_receiver_email@gmail.com')->send(new AppMailMyTestMail($details));

dd("Email is Sent.");

});

Now you can run and check example.

It will send you email, let’ see.

Run Project:

php artisan serve

Open Link:

Also see:Laravel 7 Yajra Datatables Example
http://localhost:8000/send-mail

Output:

I hope it can help you…

Hope this code and post will helped you for implement Laravel 7 Send Email Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

86  +    =  90

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US