@mehulbaid/nest-sendgrid
Version:
Integrates @sendgrid/mail client in a modular way to help send email from NestJs
10 lines (9 loc) • 352 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InjectSendGrid = void 0;
const common_1 = require("@nestjs/common");
const sendgrid_constants_1 = require("./sendgrid.constants");
function InjectSendGrid() {
return common_1.Inject(sendgrid_constants_1.SENDGRID_TOKEN);
}
exports.InjectSendGrid = InjectSendGrid;