https://github.com/coding-to-music/resend-email-nextjs-tailwind-demo
https://resend-email-nextjs-tailwind-demo.vercel.app
From / By Colby Fayock https://github.com/colbyfayock/demo-email-signup-starter
https://github.com/colbyfayock/my-react-email
https://demo-email-signup-starter.vercel.app/
Demo for tutorial How to Automatically Tag & Categorize Images Using AI with Google Vision & Cloudinary
š Article: https://spacejelly.dev/posts/create-email-templates-with-react-js-using-react-email/
šŗ YouTube: https://www.youtube.com/watch?v=D4pS4b9-DgA&ab_channel=ColbyFayock
nvm use 18
git init
git add .
git remote remove origin
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:coding-to-music/resend-email-nextjs-tailwind-demo.git
git push -u origin main
npx create-next-app -e https://github.com/colbyfayock/demo-email-signup-starter
curl -X POST 'https://api.resend.com/emails' \
-H 'Authorization: Bearer RESEND_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d $'{
"from": "[email protected]",
"to": "DESTINATION_EMAIL_ADDRESS",
"subject": "Hello World",
"html": "<p>Congrats on sending your <strong>first email</strong>!</p>"
}'
import { Resend } from 'resend';
const resend = new Resend('RESEND_API_KEY_HERE');
resend.emails.send({
from: '[email protected]',
to: 'DESTINATION_EMAIL_ADDRESS',
subject: 'Hello World',
html: '<p>Congrats on sending your <strong>first email</strong>!</p>'
});