Reputation: 89
I am creating an application that has set of users ( roughly 5000 and growing ). External companies can send them certain documents by email. I dont want to create so many email ids and what to use a catchall email id.
This catchall email will capture the email and forward it to an API / Webhook, based on unique id, (eg. email id can be [email protected] or [email protected] )
The API will store the documents against the specific user who can be identified by unique id in the email.
With this, I don't need to create email ids for each user.
Can this be achieved by setting up own SMTP or I can use some third party?
Upvotes: 0
Views: 52
Reputation: 1
Perhaps a different architecture?
If your goal is to automate the parsing and user assignment of emails, you're in for a treat.
Upvotes: 0