techxnix-mail
Version:
Techxnix Mail Library for NestJS applications - A powerful and easy-to-use mail module using SendGrid
20 lines (19 loc) • 425 B
TypeScript
export interface IMailOptions {
to: string | string[];
subject: string;
text?: string;
html?: string;
from?: {
email?: string;
name?: string;
};
templateId?: string;
dynamicTemplateData?: Record<string, any>;
attachments?: Array<{
content: string;
filename: string;
type?: string;
disposition?: string;
contentId?: string;
}>;
}