1.3.7 • Published 1 year ago

nodemailer-smime-plus v1.3.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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

1.3.7

1 year ago

1.3.6

1 year ago

1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago