-
Hi all! The question is straight forward. I build a next js app and deployed it in vercel. But there I'm not able to send emails. EDIT: I have the RESEND_API_KEY configured in vercel. Any help? Code related with resend:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Are you getting some error from it as well? If yes, what error are you getting? |
Beta Was this translation helpful? Give feedback.
Un update on this - it turns out that I had a wrong configuration on my
next.config.mjs
filepreviously I had the file like this:
By removing the output and disDir settings I was able to send emails.
Important info about
output
setting:undefined
: The default build output, .next directory, that works with production mode next start or…