UNPKG

@ntegral/nestjs-sendgrid-client

Version:

Provides an injectable SendGrid Client for the SendGrid v3 Web API

8 lines (6 loc) 279 B
import { SendGridClientModuleOptions } from '../interfaces'; import { SendGridClient } from '@ntegral/sendgrid-client'; export function createSendGridClient(options: SendGridClientModuleOptions): SendGridClient { const client = new SendGridClient(options); return client; }