
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
dpd-sendgrid
Advanced tools
Module for Deployd that allows you to send an email to your users via SendGrid
Module for Deployd that allows you to send an email to your users.
This is built on SendGrid module.
$ npm install --save dpd-sendgrid
See Installing Modules for details.
Before using the email resource, you must go to its Dashboard page and configure it.
apiToken
SendGrid API Token. Leave blank to use the SENDGRID_API_TOKEN env variable.
defaultFromAddress A "from" email address to provide by default. Leave this blank to use the SENDGRID_DEFAULT_FROM environment variable. If this is not provided, you will need to provide this address in every request.
internalOnly If checked, only allow internal requests (such as those from events) to send emails. Recommended for security.
productionOnly If checked, attempting to send an email in the development environment will simply print it to the Deployd console.
To send an email, call dpd.sendgrid.post(options, callback) (replacing sendgrid with your resource name). The options argument is an object:
{
// The email address of the sender. Required if defaultFromAddress is not configured.
// Can be plain (sender@server.com) or formatted (Sender Name <sender@server.com>)
from : "",
// Comma separated list of recipients e-mail addresses that will appear on the To: field
to : "",
// Comma separated list of recipients e-mail addresses that will appear on the Cc: field
cc : "",
// Comma separated list of recipients e-mail addresses that will appear on the Bcc: field
bcc : "",
// The subject of the e-mail.
subject : "",
// The plaintext version of the message (can also be generated via templating)
text : "",
// The HTML version of the message;
html : "",
}
// On POST /users
dpd.sendgrid.post({
to : this.email,
subject : 'MyApp registration',
text : [
this.username,
'',
'Thank you for registering for MyApp!'
].join('\n')
}, function ( err, results ) {
// ...
});
FAQs
Module for Deployd that allows you to send an email to your users via SendGrid
We found that dpd-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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.