AWS SES
Use AWS SES to send magic link emails
First, youβll need to create your SMTP credentials for AWS Simple Email Service (SES):
On the old SES console, thereβs an SMTP Settings link on the left side.
On the new SES console, the link is under Account dashboard on the left sidebar.
Create new SMTP credentials, and copy them. The final string will look like this:
There are three variables that you should replace in this string:
username
andpassword
, which are the SMTP credentials you created earlier.us-east-1
replace it with the region that youβre sending emails from
Set this value into the .env file
Open src/config/auth.ts
and set:
Last updated