nodemailer-cli

2.1.1 • Public • Published

nodemailer-cli

Build Status Dependency Status

A command line interface for sending email, wrapped around nodemailer.

Installation

Install the module globally to expose the nodemailer command to your environment.

npm install -g nodemailer-cli

Usage

$ nodemailer --help

Usage: nodemailer <to> <from> [bodyText] [options]

to           Email address, or comma separated list of email addresses to send mail to.
from         Email address that the message should be from.
bodyText     The plaintext message body.

Options:
   -t, --service    The nodemailer service identifier, if any.
   -u, --username   The SMTP username to use when authenticating.  [local_user_name]
   -p, --password   The plain-text password to use when authenticating.
   -s, --server     The SMTP server that mail will be delivered to.
   -r, --port       The port to use when contacting the SMTP server.
   -n, --nossl      If set, SSL will not be used when sending mail.
   -j, --subject    The string to be used as the email's subject.
   --cc             An email address to Carbon Copy. List multiple recipients by appending multiple --cc parameters.
   --bcc            An email address to Blind Carbon Copy. List multiple recipients by appending multiple -bcc parameters.
   --replyTo        An email address that should receive replies if a recipient replies to your message.
   --body           A file to use as the message body.
   --attachment     A path to a file that should be attached. List multiple attachments by appending multiple --attachment parameters.
   -v, --version    Print version and exit.

Environment Variables

Some environment variables can be used in place of CLI options. CLI options override these environment variables, if used, so these can be thought of as defaults.

  • SMTP_SERVER The hostname of the SMTP server to be used.
  • SMTP_PORT The port on the SMTP server that should be connected to.
  • SMTP_USERNAME The username to use when authenticating.
  • SMTP_PASSWORD The password to use when authenticating.
  • SMTP_USE_SSL Set this to a truth-y value to use SSL.
  • SMTP_USE_TLS Set this to a truth-y value to use TLS (STARTTLS)
  • SMTP_SERVICE_NAME This is one of nodemailer's service identifiers, if you want it to configure itself automatically.

History

  • v2.1.0

    • Updates to support multiple --attachment parameters — @mistralol
  • v2.0.1

    • Fixes typo that would cause env vars to be ignored for useTLS — @mistralol
  • v2.0.0

    • Package Updates, fixes — @mistralol, #6
      • Increased minimum node version to 4
      • Added option to ignore STARTTLS
      • Added option to ignore certificate
      • Fix missing server alias from the command line
      • Bring all deps up to current versions
    • Reformat README — @fardog
  • v1.0.3

    • Fixes undefined being passed for auth when no auth is specified. Thanks to @mistralol.
  • v1.0.2

  • v1.0.1

    • Updates dependencies and adds dependency badge.
  • v1.0.0

    • Adds linter, gulp for running tests.
  • v0.3.0

    • Adds tests, and moves to a more test-able architecture. Replaces nomnom with minimist, and adds a custom validator for CLI options.
  • v0.2.0

    • Adds additional fields: cc, bcc, replyTo. Allows multiple emails as a comma-separated list in fields where it's sensible.
  • v0.1.2

    • Adds preferGlobal to the package, to warn if installed locally.
  • v0.1.1

    • Adds flag to print version of cli and nodemailer.
  • v0.1.0

    • Cleans up command line switches, and adds support for attachments.
  • v0.0.1

    • Initial Release.

The MIT License (MIT)

Copyright (c) 2014 Nathan Wittstock

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.1.1
    11
    • latest

Version History

Package Sidebar

Install

npm i nodemailer-cli

Weekly Downloads

25

Version

2.1.1

License

MIT

Last publish

Collaborators

  • fardog