npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

service-email2-node

v1.0.1

Published

Email delivery sending microservice in Node.js / ES2017 V2

Downloads

6

Readme

Email Delivery Microservice for Node.js / ES2017 V2

This is a email delivery microservice from Pip.Services library. This microservice sends emails to specified recipients.

The microservice currently supports the following deployment options:

  • Deployment platforms: Standalone Process
  • External APIs: HTTP/REST

Quick Links:

Contract

Logical contract of the microservice is presented below. For physical implementation (HTTP/REST, Lambda, etc.), please, refer to documentation of the specific protocol.

class EmailMessageV1 {
  public from: string;
  public cc: string;
  public bcc: string;
  public to: string;
  public reply_to: string;
  public subject: string;
  public text: string;
  public html: string;
}

class EmailRecipientV1 {
  public id: string;
  public name: string;
  public email: string;
  public language: string;
}

interface IEmailV1 {
  sendMessage(
    context: IContext,
    message: EmailMessageV1,
    parameters: ConfigParams
  ): Promise<void>;
  sendMessageToRecipient(
    context: IContext,
    recipient: EmailRecipientV1,
    message: EmailMessageV1,
    parameters: ConfigParams
  ): Promise<void>;
  sendMessageToRecipients(
    context: IContext,
    recipients: EmailRecipientV1[],
    message: EmailMessageV1,
    parameters: ConfigParams
  ): Promise<void>;
}

Message subject, text and html content can be set by handlebars template, that it processed using parameters set. Here is an example of the template:

Dear {{ name }},
<p />
Please, help us to verify your email address. Your verification code is {{ code
}}.
<p />
Click on the
<a
  href="{{ clientUrl }}/#/verify_email?server_url={{ serverUrl }}&email={{ email }}&code={{ code }}"
  >link</a
>
to complete verification procedure
<p />
---<br />
{{ signature }}

Download

Right now the only way to get the microservice is to check it out directly from github repository:

git clone [email protected]:entinco/eic-services-infrastructure2.git

Pip.Service team is working to implement packaging and make stable releases available for your as zip downloadable archieves.

Develop

This document provides high-level instructions on how to build and test the microservice.

Environment Setup

This is a Node.js project and you have to install Node.js tools. You can download them from official Node.js website: https://nodejs.org/en/download/

After node is installed you can check it by running the following command:

node -version

Then you need to configure node tools:

# Install typescript compiler
npm install typescript -g

# Install mocha test runner
npm install mocha -g

To work with GitHub code repository you need to install Git from: https://git-scm.com/downloads

Installing

After your environment is ready you can check out microservice source code from the Github repository:

git clone [email protected]:entinco/eic-services-infrastructure2.git

Then go to the project folder and install dependent modules:

# Install dependencies
npm install

If you worked with the microservice before you can check out latest changes and update the dependencies:

# Update source code updates from github
git pull

# Update dependencies
npm update

Building

This microservice is written in TypeScript language which is transcompiled into JavaScript. So, if you make changes to the source code you need to compile it before running or committing to github. The process will output compiled javascript files into /bin folder.

tsc

When you do continuous edit-build-test cycle, you can run typescript compiler with --watch option to detect and compile changes you make automatically:

tsc --watch

Testing

Before you execute tests you need to set configuration options in config.yml file.

Command to run unit tests:

npm test

You can also execute benchmarks as:

npm run benchmark

Configure

Email delivery microservice configuration structure follows the standard configuration structure.

Service

Service has the following configuration properties:

  • message: hashmap - Message default properties
    • from: string - sender address
    • cc: string - CC address
    • to: string - default recipient address
    • reply_to: string - Reply-To address
  • connection: ConnectionParams - SMTP connection parameters
  • credential: CredentialParams - SMTP credentials

Example:

- descriptor: "email:service:default:default:1.0"
  message:
    from: "[email protected]"
    to: "[email protected]"
  connection:
    service: "Gmail"
    host: "smtp.gmail.com"
    secure_connection: true
    port: 465
  credential:
    username: "[email protected]"
    password: "pass123"

Controllers

The controller components (also called endpoints) expose external microservice API for the consumers. Each microservice can expose multiple APIs (HTTP/REST, Lambda) and multiple versions of the same API type. At least one service is required for the microservice to run successfully.

Http

HTTP/REST controller has the following configuration properties:

  • connection: object - HTTP transport configuration options
    • protocol: string - HTTP protocol - 'http' or 'https' (default is 'http')
    • host: string - IP address/hostname binding (default is '0.0.0.0')
    • port: number - HTTP port number

Example:

- descriptor: "email:controller:commandable-http:default:1.0"
  connection:
    protocol: "http"
    host: "0.0.0.0"
    port: 3000

Run

Add config.yml file to the config folder and set configuration parameters. Example of microservice configuration:

---
- descriptor: "pip-services-commons:logger:console:default:1.0"
  level: "trace"

- descriptor: "email:service:default:default:1.0"
  message:
    from: "[email protected]"
    to: "[email protected]"
  connection:
    service: "Gmail"
    host: "smtp.gmail.com"
    secure_connection: true
    port: 465
  credential:
    username: "[email protected]"
    password: "pass123"

- descriptor: "email:service:commandable-http:default:1.0"
  connection:
    protocol: "http"
    host: "0.0.0.0"
    port: 8080

Start the microservice using the command:

node ./bin/main.js

Use

The easiest way to work with the microservice is to use client library. The complete list of available client libraries for different languages is listed in the Quick Links

If you use Node.js then you should add dependency to the client library into package.json file of your project

{
    ...
    "dependencies": {
        ....
        "client-email2-node": "^1.0.*",
        ...
    }
}

Inside your code get the reference to the client library

var client = new require("client-email2-node");

Define client configuration parameters that match configuration of the microservice external API

// Client configuration
var config = {
  connection: {
    protocol: "http",
    host: "localhost",
    port: 8080,
  },
};

Instantiate the client and open connection to the microservice

// Create the client instance
var client = client.EmailHttpClientV1(config);

try {
    // Connect to the microservice
    await client.open(null);
    // Work with the microservice
    ...
} catch (err) {
    console.error('Connection to the microservice failed');
    console.error(err);
}

Now the client is ready to perform operations

// Send email message to address
await client.sendMessage(null, {
  to: "[email protected]",
  subject: "Test",
  text: "This is a test message. Please, ignore it",
});
// Send email message to users
await client.sendMessageToRecipients(
  null,
  [
    { id: "123", email: "[email protected]" },
    { id: "321", email: "[email protected]" },
  ],
  {
    subject: "Test",
    text: "This is a test message. Please, ignore it",
  }
);

Acknowledgements

This microservice was created and currently maintained by: