
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@anvilco/nodemailer-sendgrid
Advanced tools
SendGrid transport object for Nodemailer.
Using provider APIs like SendGrid might result in a vendor lock-in, especially if you are using provider specific features. So always consider if you would prefer to use SMTP based services instead where vendor lock-ins do not happen.
Switching from a SMTP based provider to another is much easier (you do need to edit some DNS settings at least) than switching API based providers where you probably have a lot of custom code targeting your existing provider.
This module is specially designed to be as much compatible with Nodemailer as possible, so if you do not touch the Sendgrid specific configuration options then switching from SendGrid API to any other provider should be just as easy as switching from SMTP.
Requires Nodemailer v4.3.0+
This module is mostly meant to demonstrate the usage of mail.normalize(cb)
method in Nodemailer v4.3. This allows creating HTTP API based transports for
Nodemailer much easier.
npm install nodemailer nodemailer-sendgrid
const nodemailer = require('nodemailer');
const nodemailerSendgrid = require('nodemailer-sendgrid');
const transport = nodemailer.createTransport(
nodemailerSendgrid({
apiKey: process.env.SENDGRID_API_KEY
})
);
See full example.
Message objects support the entire Nodemailer API. In addition you can provide SendGrid specific keys like templateId
or sendAt
.
transport.sendMail({
from: 'sender@example.com',
to: 'Receiver Name <receiver@example.com>, someother@example.com',
subject: 'hello world',
html: '<h1>Hello world!</h1>'
});
MIT
FAQs
SendGrid transport object for Nodemailer.
The npm package @anvilco/nodemailer-sendgrid receives a total of 0 weekly downloads. As such, @anvilco/nodemailer-sendgrid popularity was classified as not popular.
We found that @anvilco/nodemailer-sendgrid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.