Skip to content

library-of-code/email-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Email Service (Beta)

Quick Setup

(make sure you have Node installed)

  • git clone this directory.

  • run yarn install or npm install inside the directory.

  • Add your account.json file in the config folder.

    NOTE: Make sure the email account you're using enables 3rd party apps. (Especially for Gmail)

    A sample account.json looks like this:

    {
        "user": "[email protected]",
        "pass": "samplepass0"
    }
    
  • Run yarn dev or npm run dev

Sending mails

Once the server is up and running you can send a request to the / endpoint with a JSON body like below:

{
    "to: "[email protected]",
    "subject": "Sample Subject",
    "message": "Hey there! How are you?"
}

Testing

  • Make sure REST Client is installed (VSCode).
  • Got to testmail.json to customize your test email.
  • Go to test/send.http and send the request. (Alternatively, you can copy the cURL command and execute it in the terminal.)

About

Simple email service with express and nodemailer

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published