import { Resend } from 'resend';
const resend = new Resend('re_xxxxxxxxx');
const { data, error } = await resend.templates.create({
name: 'order-confirmation',
html: '<p>Name: {{{PRODUCT}}}</p><p>Total: {{{PRICE}}}</p>',
variables: [
{
key: 'PRODUCT',
type: 'string',
fallbackValue: 'item',
},
{
key: 'PRICE',
type: 'number',
fallbackValue: 25,
}
],
});
// Or create and publish a template in one step
await resend.templates.create({ ... }).publish();