Socket
Book a DemoInstallSign in
Socket

@eucalyptusvc/sendgrid

Package Overview
Dependencies
Maintainers
7
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@eucalyptusvc/sendgrid

This is a dedicated module for interaction with the mail endpoint of the Sendgrid v3 API.

unpublished
latest
Source
npmnpm
Version
1.2.1
Version published
Maintainers
7
Created
Source

@eucalyptusvc/sendgrid

This is a dedicated module for interaction with the mail endpoint of the Sendgrid v3 API.

Install

With yarn:

yarn add @eucalyptusvc/sendgrid

With npm:

npm install @eucalyptusvc/sendgrid

Usage

import { Sendgrid } from '@eucalyptusvc/sendgrid';

const mailer = new Sendgrid({
  brand: 'Pilot',
  apiKey: process.env.SENDGRID_API_KEY,
  email: 'gday@pilot.com.au',
});

const data = {
  email: 'hello@eucalyptus.vc',
  templateId: 'd-xxxxxxxxxxxxxxxx',
  variables: {
    action_url: 'https://eucalyptus.vc',
    firstName: 'Thomas',
  },
};

(async (): Promise<void> => {
  try {
    await mailer.send({
      to: data.email,
      templateId: data.templateId,
      variables: {
        ...data.variables,
      },
    });
  } catch (error) {
    console.error(error.message);
  }
})();

Development

  • Install dependencies using yarn install or npm install
  • Start development server using yarn watch

FAQs

Package last updated on 12 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts