nodemailer-smime-plus
TypeScript icon, indicating that this package has built-in type declarations

1.3.7 • Public • Published

Nodemailer plugin to sign mail using S/MIME

This is an up-to-date version of the original nodemailer-smime package.

Install

Install from npm

npm install nodemailer-smime-plus --save

Usage

Load the nodemailer-smime-plus plugin

import smime from 'nodemailer-smime-plus';

Attach it as a 'stream' handler for a nodemailer transport object

const options = {
  cert: '<PEM formatted cert>',
  chain: [
    '<PEM formatted cert>',
  ],
  key: '<PEM formatted key>',
};
transporter.use('stream', smime(options));

Options

  • cert - PEM formatted SMIME certificate to sign/bundle mail with
  • chain - array of PEM formatted certificates to bundle
  • key - PEM formatted private key associated with certificate

Example

import nodemailer from 'nodemailer';
import smime from 'nodemailer-smime-plus';

const transporter = nodemailer.createTransport();
const options = {
  cert: '<PEM formatted cert>',
  chain: [
    '<PEM formatted cert>',
  ],
  key: '<PEM formatted key>',
};
transporter.use('stream', smime(options));
transporter.sendMail({
  from: 'me@example.com',
  to: 'receiver@example.com',
  html: '<b>Hello world!</b>'
});

License

MIT

/nodemailer-smime-plus/

    Package Sidebar

    Install

    npm i nodemailer-smime-plus

    Weekly Downloads

    5

    Version

    1.3.7

    License

    MIT

    Unpacked Size

    21.6 kB

    Total Files

    11

    Last publish

    Collaborators

    • xonaman