UNPKG

@mehulbaid/nest-sendgrid

Version:

Integrates @sendgrid/mail client in a modular way to help send email from NestJs

10 lines (9 loc) 367 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createSendGridClient = void 0; const sendgrid_service_1 = require("../services/sendgrid.service"); function createSendGridClient(options) { const client = new sendgrid_service_1.SendGridService(options); return client; } exports.createSendGridClient = createSendGridClient;