
Environment variables
Add your API key and audience ID to the.env file.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.

.env file.
# .env
RESEND_API_KEY=
RESEND_AUDIENCE_ID=
import { sendEmail } from '~/core/email';
await sendEmail({
subject: 'Test email',
to: 'user@test.com',
from: 'contact@yourcompany.com',
html: 'This is a test email from <b>ShipKit</b>.',
})