To use MailerSend with SuperStarter

1

Create a MailerSend account

Create a MailerSend account and grab your API key.

2

Add environment variables

Add the MAILERSEND_TOKEN environment variables to your .env.local file and your deployment environment:

Then, make sure to activate MailerSend:

/packages/email/index.ts
export * from './providers/mailersend';
3

Sending Emails

apps/web/app/contact/actions/contact.tsx
import { mailerSendClient } from '@repo/email';
import { ContactTemplate } from '@repo/email/emails/contact';
import { render } from '@react-email/components';

const emailHtml = await render(<ContactTemplate name={name} email={email} message={message} />);

const sentFrom = new Sender("you@yourdomain.com", "Your name");
const recipients = [
new Recipient("your@client.com", "Your Client")
];

const emailParams = new EmailParams()
.setFrom(sentFrom)
.setTo(recipients)
.setSubject("This is a Subject")
.setHtml(emailHtml)

await mailerSendClient.email.send(emailParams);