An SMTP email test connects to your mail server using the credentials you provide, authenticates over the chosen security protocol, and sends a real test message to a recipient you specify. If the message is accepted for delivery, the server configuration and credentials are confirmed working. Most SMTP email tester tools only check connectivity. This one authenticates fully and submits a real message — so a successful result means credentials, TLS negotiation and relay permission all passed.Documentation Index
Fetch the complete documentation index at: https://docs.spotzee.com/llms.txt
Use this file to discover all available pages before exploring further.
Run this test at spotzee.com/tools/smtp-email-test.
Why this matters
SMTP credential errors are among the most common causes of email delivery failures that are difficult to diagnose quickly. A send failure in an application or marketing platform surfaces as a generic error — “message not sent” — without telling you whether the issue is authentication, network, TLS mismatch or the server rejecting the from address. An SMTP email test isolates credentials and configuration from the application entirely. For financial services teams managing their own SMTP relay or switching providers, this test is a mandatory pre-deployment check. It confirms the new credentials work before they go into production configuration files, so you are not debugging a failed migration under send-queue pressure. And it catches configuration drift — when credentials that worked six months ago silently stopped working after a password rotation or account policy change.How it works
Enter your SMTP credentials
Provide the hostname, port, security mode (None, STARTTLS or SSL), username and password for your SMTP account.
Set the sender and recipient
Enter a from address — typically within your sending domain — and a to address where you want the test message delivered.
Authenticate and send
The tool connects to your SMTP server, authenticates with your credentials, and submits a test message for delivery.
What to watch for
- Authentication failure (535). The server is rejecting your username and password. Check for typos, confirm the account is active, and verify whether your provider requires an app-specific password. Google, Microsoft and others block direct password access when two-factor authentication is enabled.
- Connection refused or timed out. Port is blocked or the wrong port number is configured. Port 587 with STARTTLS is the standard submission port. Port 465 uses SSL from the start. Port 25 is for server-to-server MTA connections, not authenticated submission.
- TLS negotiation failed. Security mode mismatch — the server expects STARTTLS but SSL was selected, or vice versa. Try switching the security mode and re-running the test.
- Sender address rejected. The from address is not permitted by the SMTP account. Many providers restrict which from addresses an account can send from — use an address within your authenticated sending domain.
- Test delivered but marked spam. The SMTP credentials work but the message landed in spam. Run an email spam checker on your content to identify the filter triggers.
FAQs
Is my SMTP password secure?
Is my SMTP password secure?
Your password is sent directly to your SMTP server over the security protocol you select — the same path it takes from any email client. The tool never stores, logs or echoes your credentials in results. Use a dedicated SMTP account or app password rather than your main account login wherever your provider supports it.
Which port and security mode should I use?
Which port and security mode should I use?
Port 587 with STARTTLS is the current standard for authenticated email submission. Port 465 with SSL is an older alternative still supported by many providers. Port 25 is for server-to-server transfer, not authenticated submission. If your provider specifies which to use, follow their documentation.
What does a '535 authentication failed' error mean?
What does a '535 authentication failed' error mean?
The server is rejecting your username and password. Check for typos, confirm the account is active, and verify whether your provider requires an app-specific password — Google, Microsoft and others block direct password access when two-factor authentication is enabled.
Can I use this to test Gmail or Outlook SMTP?
Can I use this to test Gmail or Outlook SMTP?
Gmail (
smtp.gmail.com, port 587) and Outlook (smtp.office365.com, port 587) both support SMTP with STARTTLS. Both require an app-specific password when two-factor authentication is enabled. Entering your main account password will result in an authentication failure.Does the test actually deliver an email?
Does the test actually deliver an email?
Yes — if the test succeeds, a real message is delivered to the recipient address you enter. Use an address you own and can check. A successful delivery confirms your SMTP credentials and server configuration are both working.
Where can I learn more about SMTP email testing?
Where can I learn more about SMTP email testing?
Run the test at spotzee.com/tools/smtp-email-test. For programmatic access — verifying SMTP credentials as part of an onboarding flow or automated infrastructure check — the Spotzee Extended API exposes the same endpoint, charged per call from your credit balance. See spotzee.com/pricing for live per-call rates.