Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.12 KB

README.md

File metadata and controls

54 lines (36 loc) · 1.12 KB

Laravel Queue and Jobs for Email delivery

Using Laravel Queue and Jobs for Email delivery with Gmail SMTP Server

Installation

First clone this repository, install the dependencies, and setup your .env file.

git clone https://github.com/ardirannu/laravel-queue-email.git laravel-queue-email
composer install
cp .env.example .env

Then create the necessary database.

php artisan db
create database email-queue

And run the initial migrations and seeders.

php artisan migrate --seed

Setup SMTP Server.

MAIL_MAILER=smtp
MAIL_HOST=smtp.googlemail.com
MAIL_PORT=465
MAIL_USERNAME=your gmail adresss
MAIL_PASSWORD=your gmail password
MAIL_ENCRYPTION=ssl
[email protected]
MAIL_FROM_NAME="${APP_NAME}"

💻 Built with

Technologies used in the project:

  • Laravel
  • SMTP server

Author

Ardianto Rannu