![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
sendgrid-nodejs-custom
Advanced tools
This library allows you to quickly and easily use the Sendgrid API via Node.js.
This library allows you to quickly and easily use the Sendgrid API via Node.js.
The following recommended installation requires npm. If you are unfamiliar with npm, see the npm docs.
npm install --save sendgrid-nodejs-custom
Sending a Single Email to a Single Recipient
const sendgrid = require('sendgrid-nodejs-custom');
const mailOptions = {
sendgrid_key: SENDGRID_KEY,
from_email: FROM_EMAIL,
from_name: FROM_NAME,
to: TO_EMAIL
};
mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
console.log('New welcome email sent to:', email);
});
Sending a Single Email to a Single Recipient With a CC
const sendgrid = require('sendgrid-nodejs-custom');
const mailOptions = {
sendgrid_key: SENDGRID_KEY,
from_email: FROM_EMAIL,
from_name: FROM_NAME,
to: TO_EMAIL
cc: TO_CC
};
mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
console.log('New welcome email sent to:', email);
});
Sending a Single Email to a Single Recipient With a CC and a BCC
const sendgrid = require('sendgrid-nodejs-custom');
const mailOptions = {
sendgrid_key: SENDGRID_KEY,
from_email: FROM_EMAIL,
from_name: FROM_NAME,
to: TO_EMAIL,
cc: TO_CC,
bcc: TO_BCC
};
mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
console.log('New welcome email sent to:', email);
});
Sending the same Email to Multiple Recipients
const sendgrid = require('sendgrid-nodejs-custom');
const mailOptions = {
sendgrid_key: SENDGRID_KEY,
from_email: FROM_EMAIL,
from_name: FROM_NAME,
to: [TO_EMAIL1, TO_EMAIL2, ...]
};
mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
console.log('New welcome email sent to:', email);
});
Sending a Single Email to a Single Recipient With Multiple CCs/BCCs
const sendgrid = require('sendgrid-nodejs-custom');
const mailOptions = {
sendgrid_key: SENDGRID_KEY,
from_email: FROM_EMAIL,
from_name: FROM_NAME,
to: TO_EMAIL,
cc: [TO_CC1, TO_CC2, ...],
bcc: [TO_BCC1, TO_BCC2, ...]
};
mailOptions.subject = SUBJECT;
mailOptions.content = CONTENT;
sendgrid.send_via_sendgrid(mailOptions).then(response => {
console.log(response);
console.log('New welcome email sent to:', email);
});
FAQs
This library allows you to quickly and easily use the Sendgrid API via Node.js.
The npm package sendgrid-nodejs-custom receives a total of 1 weekly downloads. As such, sendgrid-nodejs-custom popularity was classified as not popular.
We found that sendgrid-nodejs-custom 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.