English
Learn how to use Plunk for sending emails.
Create a Plunk account
Add environment variables
PLUNK_TOKEN
export * from './providers/plunk';
Sending Emails
import { plunk } from '@repo/email'; import { ContactTemplate } from '@repo/email/emails/contact'; await plunk.emails.send({ to: 'recipient@acme.com', subject: 'The email subject', body: <ContactTemplate name={name} email={email} message={message} />, });