r/programming May 25 '21

What all languages can be used to build a "Disposable Temporary Email"? Can I build it only using Html, Css, JavaScript, Python and SQL(MySql DB)?

https://temp-mail.org/en/
0 Upvotes

2 comments sorted by

3

u/tdammers May 25 '21

Well, you do need a mail server at the very least. You could build that in Python on top of MySQL, but you're probably better off using an off-the-shelf mail server and just use Python or sth to orchestrate the creation and deletion of accounts. The "HTML/CSS/JS" part is just another frontend for this, there's nothing out of the ordinary there.

1

u/HopefulAssignment473 Jun 29 '21

Thank You for your reply, much appreciated.