|
|
|
|
|
by bluepostit
5013 days ago
|
|
I also love using Python's integrated SMTP server. python -m smtpd -n -c DebuggingServer localhost:25
This will just spit out the raw email.Edit: you need root permission to listen on port 25. Otherwise you can use a different port > 1024. |
|