Categorygithub.com/aswinbennyofficial/GoMailBlast
repositorypackage
0.0.0-20240110121344-c4c0225605c8
Repository: https://github.com/aswinbennyofficial/gomailblast.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

GoMailBlast

Golang-based tool to bulk sent emails from csv file using SMTP with rich HTML support with custom reply-to.

Installation

  1. Clone the repo
git clone https://github.com/aswinbennyofficial/GoMailBlast.git
  1. Install dependencies
go get github.com/joho/godotenv
  1. Setup environment variables : rename .env.example to .env and configure it.

  2. Customise the message subject and body in the variables subject and body inside util/sendEmail.go file

  3. Insert the csv of email list to send in the data folder as data.csv . Example of data.csv is given below :

Name,Email
Willy wonka,[email protected]
Elon Musk,[email protected]
Zuckerberg,[email protected]

Usage

go run .