The post How to Manually Test if an SMTP server can Receive Email first appeared on Web Hosting Stuff.
]]>This document will help in troubleshooting server connectivity and steps to test if MailEnable can send to remote servers. Here are two ways you can manually test if an SMTP server can receive emails:
Note: Telnet might not be enabled by default on your system. Consider alternative methods if unavailable.
Open a command prompt.
Type nslookup <domain_name>.
Set type to MX: set type=mx
Type telnet <hostname> 25. Replace <hostname> with the server name from step 1.
If connected, the server will respond with a welcome message.
Send the following commands, pressing Enter after each:
HELO yourdomain.com: Introduces you.
MAIL FROM: <your_email>: Sets sender address.
RCPT TO: <recipient_email>: Sets recipient address.
DATA: Starts message content.
Type your message body (lines starting with “.” end it).
. (on a new line) to send and quit.
Each command should receive a response code (e.g., 250 for success, 550 for error). Successful connection and message sending will show codes like 220, 250, and 354.
Several online tools offer simpler testing:
The post How to Manually Test if an SMTP server can Receive Email first appeared on Web Hosting Stuff.
]]>