Socket
Socket
Sign inDemoInstall

sendim-mandrill

Package Overview
Dependencies
138
Maintainers
1
Versions
86
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sendim-mandrill

[![Test Coverage](https://api.codeclimate.com/v1/badges/68fe8b1922c656a71095/test_coverage)](https://codeclimate.com/github/qlaffont/sendim-mandrill/test_coverage) [![Maintainability](https://api.codeclimate.com/v1/badges/68fe8b1922c656a71095/maintainabil


Version published
Weekly downloads
204
decreased by-46.6%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

1.0.86 (2024-04-30)

Bug Fixes

  • deps: update dependency sendim to v1.2.113 (4cef989)

Readme

Source

Test Coverage Maintainability npm npm Snyk Vulnerabilities for npm package NPM

sendim-mandrill

A simple library to send email with Sendim for Mandrill. Old Owner: @flexper

Usage

import { Sendim } from 'sendim';
import { SendimMandrillProviderConfig, SendimMandrillProvider } from 'sendim-mandrill';

const sendim = new Sendim();

await sendim.addTransport<SendimMandrillProviderConfig>(
  SendimMandrillProvider,
  { apiKey: process.env.MANDRILL_APIKEY! },
);

await sendim.sendTransactionalMail({
  templateId: '6',
  to: [
    {
      email: 'test@test.fr',
    },
  ],
  sender: {
    email: 'test@test.fr',
  },
});

Tests

To execute jest tests (all errors, type integrity test)

pnpm test

Maintain

This package use TSdx. Please check documentation to update this package.

FAQs

Last updated on 30 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc