Send form submissions using Astro and Resend
This tutorial will instruct you on how to send emails from Astro ↗ and Cloudflare Workers (via Cloudflare SSR Adapter) using Resend ↗.
Make sure you have the following set up before proceeding with this tutorial:
- A Cloudflare account ↗
- Installed npm ↗.
- A Resend account ↗.
Open your terminal and run the below command:
Follow the prompts to configure your project, selecting your preferred options for TypeScript usage, TypeScript strictness, version control, and deployment.
After the initial installation change into the newly created project directory my-astro-app
and run the following to add the Cloudflare adapter:
The @astrojs/cloudflare
adapter ↗ allows Astro’s Server-Side Rendered (SSR) sites and components to work on Cloudflare Pages and converts Astro’s endpoints into Cloudflare Workers endpoints.
- Add Your Domain from Cloudflare to Resend:
- After signing up for Resend, navigate to the side menu and click
Domains
. - Look for the button to add a new domain and click it.
- A pop-up will appear where you can type in your domain. Do so, then choose a region and click the
add
button. - After clicking the add button Resend will provide you with a list of DNS records (DKIM, SPF, and DMARC).
- After signing up for Resend, navigate to the side menu and click
- Copy DNS Records from Resend to Cloudflare:
- Go back to your Cloudflare dashboard.
- Select the domain you want to use and find the “DNS” section.
- Copy and paste the DNS records from Resend to Cloudflare.
- Verify Your Domain:
- Return to Resend and click on the “Verify DNS Records” button.
- If everything is set up correctly, your domain status will change to “Verified.”
- Create an API Key:
- In Resend, find the “API Keys” option in the side menu and click it.
- Create a new API key with a descriptive name and give Full Access permission.
- Save the API key for Local Development and Deployed Worker
- For local development, create an .env in the root folder of your Astro project and save the API key as RESEND_API_KEY=‘Api key here’ (no quotes).
- For a deployed Worker, run the following in your CLI and follow the instructions.
In the src/pages
directory, create a new folder called api
. Inside the api
folder, create a new file called sendEmail.json.ts
. This will create an endpoint at /api/sendEmail.json
.
Copy the following code into the sendEmail.json.ts
file. This code sets up a POST route that handles form submissions, and validates the form data.
Next you will need to install the Resend SDK.
Once the SDK is installed you can add in the rest of the code that sends an email using the Resend’s API, and conditionally checks if the Resend response was successful or not.
In the src
directory, create a new folder called components
. Inside the components
folder, create a new file AstroForm.astro
and copy the provided code into it.
This code creates an Astro component that renders a form and handles the form submission. When the form is submitted, the component will send a POST request to the /api/sendEmail.json
endpoint created in the previous step with the form data.
Additionally, adding the export const prerender = false;
will enable SSR; otherwise, the component will be static and unable to send a post request. If you don’t enable it inside the component then you will need to enable SSR via the template directive ↗.
After creating the AstroForm
component, add the component to your main index file located in the src/pages
directory. Below is an example of how the main index file should look with the AstroForm
component added.
You now have an Astro form component that sends emails via Resend and Cloudflare Workers. You can view your project locally via npm run preview
, or you can deploy it live via npm run deploy
.