Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

nodemailer-build-attachment

killmenot146.2kMIT3.0.0

Build and stream nodemailer attachments

nodemailer, build, stream, attachment

readme

nodemailer-build-attachment

Build Status Coverage Status Dependency Status devDependencies Status npm version npm Known Vulnerabilities Codacy Badge

Build and stream attachment's content. Based on Andris Reinman's work in buildmail.

Install

npm install nodemailer-build-attachment

Example

'use strict';

const BuildAttachment = require('nodemailer-build-attachment');
const fs = require('fs');
const stream = fs.createReadStream('path/to/file.txt');
const options = {
    contentTransferEncoding: 'base64'
};

new BuildAttachment(options).setContent(stream).build((err, attachment) => {
    console.log(attachment.content.toString()); // base64 encoded string
});

Licence

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

changelog

CHANGELOG

3.0.0 (2021-05-10)

Misc

  • drop support Node.js less than 12 version
  • bump deps

2.0.0 (2020-10-16)

Misc

  • drop support Node.js less than 10 version
  • bump deps and refactoring

1.0.5 (2017-09-12)

Misc

  • bump deps and refactoring

1.0.4 (2017-08-23)

Misc

  • bump deps

1.0.3 (2016-05-10)

Features

  • build method accepts the optional options parameter to init libbase64.Encoder instance

1.0.2 (2016-05-10)

Bug Fixes

  • return correct attachment instance

1.0.1 (2016-05-10)

Features

  • return the instance instead of content

Bug Fixes

  • remove default base64 content transer encoding

1.0.0 (2016-05-10)

Features

  • initial release