├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── app ├── favicon.ico ├── globals.css ├── hello │ ├── email.tsx │ └── route.tsx ├── layout.tsx ├── page.module.css └── page.tsx ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── public ├── next.svg ├── thirteen.svg └── vercel.svg └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/hello/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/hello/email.tsx -------------------------------------------------------------------------------- /app/hello/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/hello/route.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/page.module.css -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/app/page.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredpalmer/nextjs-route-handler-email/HEAD/tsconfig.json --------------------------------------------------------------------------------