Fake SMTP Server for testing
When you develop a website or an application, you may need to use a fake SMTP server for debugging. Fake SMTP servers access emails, but they won’t deliver emails to the recipient’s email address. The simplest way to run a debugging SMTP server is using the following python code python3 -m smtpd -n -c DebuggingServer … Read more