Tag: troubleshooting
-
Testing SMTP with Telnet and PowerShell (Cheat Sheet)
This is my cheat sheet for sending E-Mail through a SMTP Server. This is particularly useful when configuring and testing a new SMTP server. PowerShell: Send-MailMessage -SMTPServer hostname -To youremail@domain.com -From none@none.com -Subject “This is a test email” -Body “This is the body of the test email sent via PS.” Telnet: C:\>telnet hostname 25 220…
Written by