@norvento/persistent-mail
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

Persistent Mail

Mail sender with disk persistency. It uses microsoft graph api to send the mails.

Config

You have two options to configure the library:

From environment variables:

The following environment variables must be declared:

AZURE_CLIENT_ID
AZURE_TENANT_ID
AZURE_CLIENT_SECRET
MAIL_USERNAME
MAIL_PASSWORD
MAIL_STORE_PATH
MAIL_CRON

From config object

A config object with the following properties must be provided:

{
    azureClientId: string,
    azureTenantId: string,
    azureClientSecret: string
    username: string,
    password: string,
    storePath: string,
    cron: string
}

Example with config from environment vars

The vars where previously defined in a .env file located at the root level

const { Mail, PersistentMail } = require("@norvento/persistent-mail");

const mail = new Mail('to', 'subject', 'body');

async function sendMail() {
    await PersistentMail.init();
    PersistentMail.sendMail(mail);
}

sendMail();

##Example with config from config object

const { Mail, PersistentMail } = require("@norvento/persistent-mail");

const mail = new Mail('to', 'subject', 'body');

const myConfig = {
    azureClientId: "my azure client id,
    azureTenantId: "my azure tenant id",
    azureClientSecret: "my azure client secret",
    username: "username",
    password: "password",
    storePath: "/tmp/persisten-mail",
    cron: "*/1 * * * *"
}

async function sendMail() {
    await PersistentMail.init(myConfig);
    PersistentMail.sendMail(mail);
}

sendMail();

Readme

Keywords

none

Package Sidebar

Install

npm i @norvento/persistent-mail

Weekly Downloads

32

Version

2.2.1

License

ISC

Unpacked Size

53.7 kB

Total Files

43

Last publish

Collaborators

  • sorozco_norvento
  • yadrio_norvento
  • dcastro_norvento
  • norvento.ds
  • jmouriz_norvento