├── .env.example ├── .gitignore ├── LICENSE ├── app ├── api │ └── send │ │ └── route.tsx ├── layout.tsx └── page.tsx ├── components └── email-template.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── readme.md ├── renovate.json └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | RESEND_API_KEY="" -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .next 3 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/LICENSE -------------------------------------------------------------------------------- /app/api/send/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/app/api/send/route.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | export default function Page() { 2 | return

Hello, Home page!

3 | } -------------------------------------------------------------------------------- /components/email-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/components/email-template.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/renovate.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resend/resend-nextjs-app-router-example/HEAD/tsconfig.json --------------------------------------------------------------------------------