
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
sendgrid-v3-node
Advanced tools
This library allows you to quickly and easily use the Sendgrid API V3 via Node.js.
This library allows you to quickly and easily use the Sendgrid API V3 via Node.js.
The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs.
npm install --save sendgrid-v3-node
Sending a Single Email to a Single Recipient
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
to: 'TO_EMAIL' // REQUIRED: `string` email
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
Sending a Single Email to a Single Recipient With a CC
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
to: 'TO_EMAIL', // REQUIRED: `string` email
cc: 'TO_CC' // OPTIONAL: `string` email
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
Sending a Single Email to a Single Recipient With a CC and a BCC
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
to: 'TO_EMAIL', // REQUIRED: `string` email
cc: 'TO_CC', // OPTIONAL: `string` email
bcc: 'TO_BCC' // OPTIONAL: `string` email
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
Sending the same Email to Multiple Recipients
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
to: ['TO_EMAIL1', 'TO_EMAIL2', ...] // REQUIRED: array of `string` email
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
Sending a Single Email to a Single Recipient With Multiple CCs/BCCs
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
to: ['TO_EMAIL1', 'TO_EMAIL2', ...], // REQUIRED: array of `string` email
cc: ['TO_CC1', 'TO_CC2', ...], // OPTIONAL: array of `string` email
bcc: ['TO_BCC1', 'TO_BCC2', ...] // OPTIONAL: array of `string` email
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
Sending Two Different Emails to Two Different Groups of Recipients
const sendgrid = require('sendgrid-v3-node');
const mailOptions = {
sendgrid_key: 'SENDGRID_KEY',
from_email: 'FROM_EMAIL',
from_name: 'FROM_NAME',
groups: [
{
to: ['TO_EMAIL1', 'TO_EMAIL2', ...] or 'TO_EMAIL', // REQUIRED: array of `string` email or a `string` email
cc: ['CC_EMAIL1', 'CC_EMAIL2', ...] or 'CC_EMAIL', // OPTIONAL: array of `string` email or a `string` email
bcc: ['BCC_EMAIL1', 'BCC_EMAIL2', ...] or 'BCC_EMAIL', // OPTIONAL: array of `string` email or a `string` email
},
{
to: ['TO_EMAIL1', 'TO_EMAIL2', ...] or 'TO_EMAIL', // REQUIRED: array of `string` email or a `string` email
cc: ['CC_EMAIL1', 'CC_EMAIL2', ...] or 'CC_EMAIL', // OPTIONAL: array of `string` email or a `string` email
bcc: ['BCC_EMAIL1', 'BCC_EMAIL2', ...] or 'BCC_EMAIL', // OPTIONAL: array of `string` email or a `string` email
},
]
};
mailOptions.subject = 'SUBJECT';
mailOptions.content = 'CONTENT';
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
});
FAQs
This library allows you to quickly and easily use the Sendgrid API V3 via Node.js.
The npm package sendgrid-v3-node receives a total of 0 weekly downloads. As such, sendgrid-v3-node popularity was classified as not popular.
We found that sendgrid-v3-node 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.