How to test email deliverability (avoid the spam folder)
Updated 7/20/2026
A mail server that sends correctly on the technical side can still land in spam if reputation or configuration are not good. Here is how to test.
1. The Gmail test
Send an email to a Gmail account, open it, click the three dots, "Show original". Check:
- SPF: PASS
- DKIM: PASS
- DMARC: PASS
If any is "FAIL", fix it, see SPF, DKIM and DMARC.
2. Spam score tools
There are free online services where you send a test email and get a detailed score (authentication, content, blacklists). A good score increases your chances of reaching the inbox.
3. Check reverse DNS
dig -x SERVER_IP +short
It must return the mail server's name, see reverse DNS.
4. Check blacklists
Make sure your IP is not on blocklists, see How to check if you are on a blacklist.
IP warmup
A new IP should send small volumes at first, increasing gradually, to build reputation.
Put this guide into practice on your own VPS
EU cloud servers, billed hourly, ready in minutes, with one-click installs for dozens of apps.
See pricingRelated tutorials
How to filter spam with Rspamd
Rspamd is a modern, fast spam filter. Here is how to use it to keep your inbox clean.
Updated 7/20/2026EmailHow to secure a mail server
A misconfigured mail server becomes a spam source. Here are the essential security rules.
Updated 7/20/2026EmailHow to use an SMTP relay for reliable delivery
An SMTP relay sends your emails through a service with good reputation, ideal for apps without their own mail server.
Updated 7/20/2026