ยท 1 min de lectura
Resend
API gratuita para enviar EMAILS desde tu APP o WEB
Gratias 3000 correos al mes
import { Resend } from 'resend';
const resend = new Resend('API');
resend.emails.send({
from: 'onboarding@resend.dev',
to: 'email@gmail.com',
subject: 'Hello World',
html: '<p>Congrats on sending your <strong>first email</strong>!</p>'
});