Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
/ litemailer Public archive

An email sending application where user can add different email addresses and send out mass emails.

Notifications You must be signed in to change notification settings

stephenjude/litemailer

Repository files navigation

About LiteMailer

LiteMailer is an email sending application where user can add email address and send out mass emails.

You can check how we built this by following this blog series.

Installation

git clone https://github.com/stephenjude/litemailer.git

cd litemailer

composer install

cp .env.example .env

php artisan key:generate

Add your your database credentials

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=litemailer
DB_USERNAME=root
DB_PASSWORD="your_database_password"

Run artisan migrate command

php artisan migrate

Add your SMTP credetials (use mailtrap.io)

MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=xxxxxxxxxxxxxx
MAIL_PASSWORD=xxxxxxxxxxxxxx
MAIL_FROM_ADDRESS=hello@litemailer.test
MAIL_FROM_NAME=LiteMailer

You can now run the app

Features

  • Add email address.
  • Send mass emails.

About

An email sending application where user can add different email addresses and send out mass emails.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published