New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@firstfleet/ffmailer

Package Overview
Dependencies
Maintainers
5
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@firstfleet/ffmailer

Email the things, with less code

latest
npmnpm
Version
2.0.4
Version published
Maintainers
5
Created
Source

FFMAILER

This is our libary that wraps a node mailer function

Requirements

  • Environment variable EMAIL_HOST must be set to the email server
  • Email server must be listening on port 25 (hard-coded for now)

Installation

npm install @firstfleet/ffmailer --save

Example
const ffmail = require('@firstfleet/ffmailer');

let toAddress = 'myEmail@firstfleetinc.com';
let fromAddress = 'no-reply@firstfleetinc.com'
let subject = 'Testing'
let body = 'This is the body'

await ffmail.sendMail(toAddress, fromAddress, subject, body);

FAQs

Package last updated on 06 Mar 2023

Did you know?

Socket

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