For my project, I need to generate and register a new email address with my Flask api.
Basically, when the users signup, an email address has to be generated specifically for that user where users can forward his emails and our service will scrape those emails. This is something like what Trello does after creating a board it assigns an email address and when you forward a mail to that address it makes a card out of it.
I am unable to find any resources to do this task. If anyone has any idea how to get this done (if possible not just email but also the tracking service).
A note about tracking service
I can easily make a tracker that would listen to gmail every 3-4seconds and scrape any new mails and this process will run as daemon. But the problem is this approach is not scalable since I cannot run a new daemon for every single user that registers on the platform. If there is more efficient way to do it, please let me know.
But the first point remains that I need to generate email addresses and signup with them through Python.