Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
feathers-mailer
Advanced tools
Feathers mailer service using
nodemailer
npm install feathers-mailer --save
If using a transport plugin, install the respective module.
import { Service } = from 'feathers-mailer';
app.use('/emails', new Service(transport, defaults));
transport
can be either SMTP options or a transport plugin with associated options.defaults
is an object that defines default values for mail options.service.create(body, params)
service.create
is a thin wrapper for transporter.sendMail
, accepting body
and returning a promise.
See here for possible fields of body
.
import { Service } from "feathers-mailer";
import nodemailer from "nodemailer";
(async function (app) {
const account = await nodemailer.createTestAccount(); // internet required
const transporter = {
host: account.smtp.host,
port: account.smtp.port,
secure: account.smtp.secure, // 487 only
requireTLS: true,
auth: {
user: account.user, // generated ethereal user
pass: account.pass, // generated ethereal password
},
};
// Register service and setting default From Email
app.use("mailer", new Service(transporter, { from: account.user }));
// Use the service
const email = {
to: "president@mars.com",
subject: "SMTP test",
html: "This is the email body",
};
await app.service("mailer").create(email);
console.log(`Preview URL: ${nodemailer.getTestMessageUrl(info)}`);
})(app);
import { Service } from "feathers-mailer";
import mandrill from "nodemailer-mandrill-transport";
// Register the service, see below for an example
app.use(
"/mailer",
new Service(
mandrill({
auth: {
apiKey: process.env.MANDRILL_API_KEY,
},
})
)
);
// Use the service
const email = {
from: "FROM_EMAIL",
to: "TO_EMAIL",
subject: "Mandrill test",
html: "This is the email body",
};
app
.service("mailer")
.create(email)
.then(function (result) {
console.log("Sent email", result);
})
.catch((err) => {
console.log(err);
});
A more and more appearing 'issue' these days, is that mail sent can be seen as spam. Especially if the 'from address' is not linked to the IP of the sending host. To prevent this, you can use a DKIM record. It does require a DNS mutation on the domain reflecting the 'from address', but it will prevent this. Following these steps you can implement this in node-mailer
from address
domain), and something to use as a selector e.g. feathersMailer
.email
constance defined in the example above, so it becomes like this const email = {
to: 'president@mars.com',
subject: 'SMTP test',
html: 'This is the email body',
domainName: 'THE DOMAIN ENTERED FOR THE RECORD (FROM ADDRESS DOMAIN)',
keySelector: 'THE SELECTOR YOU ENTERED TO GENERATE THE RECORD',
privateKey: 'THE CONTENT FROM THE `PRIVATE KEY` BUT REPLACE `linebreaks` WITH `\n`'
};
Important: You must replace the linebreaks
of the private key with \n
or it won't work.
A use case for this, could be a multitenancy application. There the reply domains would be different, but you might want to send from the local SMTP server of the ISP. You would then make it possible for each tenant to configure the three values in their tenant settings within the application, and dynamically collect it prior to sending the mail.
Copyright (c) 2025
Licensed under the MIT license.
v4.2.0 (2025-01-03)
FAQs
Feathers mailer service
The npm package feathers-mailer receives a total of 0 weekly downloads. As such, feathers-mailer popularity was classified as not popular.
We found that feathers-mailer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.