Resend is a simple, yet powerful email service that allows you to send transactional emails with ease. It’s designed for developers looking for a lightweight, yet secure email system that integrates seamlessly with various frameworks.Sign up for a Resend account.
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>.',})