@statter/mailer
v1.0.2
Published
statter mailer
Readme
@statter/mailer
SMTP mailer for NestJS built on nodemailer.
What Is Included
MailerModule(global NestJS module).MailerServicewith asendMailmethod.MailerInputtype for the email payload.
Important
Current src/index.ts is empty, so root-level package exports are not configured yet.
Usage Example in Monorepo
import { MailerService } from "./mailer.service"
await mailerService.sendMail({
to: "[email protected]",
subject: "Hello",
html: "<b>Welcome</b>"
})Build
npm run build -w @statter/mailer