About
Side Projects
Blog
2022-07-23

Local SMTP Server for Development and Testing

Often when you’re developing software, the system needs to be able to send emails. This can be tricky to arrange locally. Interestingly, Python provides for a handy little SMTP server that can be used for testing and development purposes;

python3 -m smtpd -n -c DebuggingServer localhost:2525