Can I send mails on behalf of someone else with Amazon SES and Next.js
Answered
Rhinelander posted this in #help-forum
RhinelanderOP
I am working on a project where users can send emails to multiple recipients. The users will have their own list of email addresses, and they want to send a message like 'Hello world' to those addresses. The email can be sent from either a domain the user has set up or from my domain if the user hasn't set up their own.
Within my app, the user will select the recipients for the email. Is it possible to implement something like this? I assume there must be a solution since platforms like Beehive offer similar functionality.
Within my app, the user will select the recipients for the email. Is it possible to implement something like this? I assume there must be a solution since platforms like Beehive offer similar functionality.
Answered by B33fb0n3
yes, you can do that. I like to use [nodemailer](https://nodemailer.com/transports/ses/), because they offer a directly integration with SES (the amazon service "simple email service")
2 Replies
@Rhinelander I am working on a project where users can send emails to multiple recipients. The users will have their own list of email addresses, and they want to send a message like 'Hello world' to those addresses. The email can be sent from either a domain the user has set up or from my domain if the user hasn't set up their own.
Within my app, the user will select the recipients for the email. Is it possible to implement something like this? I assume there must be a solution since platforms like Beehive offer similar functionality.
yes, you can do that. I like to use [nodemailer](https://nodemailer.com/transports/ses/), because they offer a directly integration with SES (the amazon service "simple email service")
Answer