
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@n4it/sendgrid-email-module
Advanced tools
Package to manage emails on an event-driven way using NestJS and SendGrid.
A NestJS module for sending emails with SendGrid. The SendGridEmailModule
will listen to events and send emails via sendgrid accordingly.
To install the module, use npm:
npm install @n4it/sendgrid-email-module
To use the SendGridEmailModule
, import it into your NestJS module and configure it using the register
method. This method exposes an event listener, so you can sending emails.
import { SendGridEmailModule } from "@n4it/sendgrid-email-module";
import { Module } from "@nestjs/common";
@Module({
imports: [
SendGridEmailModule.register({
logErrros: true,
apiKey: "SG-....",
fromEmail: "hello@example.com",
exponentialBackoff: {
maxRetries: 3,
baseDelayMs: 1000
},
}),
],
})
export class AppModule {}
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request or open an issue on GitHub.
If you have any questions or need support, you can contact us at info@n4it.nl.
FAQs
Package to manage emails on an event-driven way using NestJS and SendGrid.
We found that @n4it/sendgrid-email-module 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.