๐ Stop Wasting Send Credits: Meet TrueMailer
(Email Validation That Actually Ships)
If youโre onboarding users, running campaigns, or fighting fake signups, bad emails quietly burn cash and wreck deliverability.
TrueMailer fixes that โ with a fast, privacy-first email validation API your team can plug in within minutes.
โก Why It Matters
๐ Protect Deliverability โ Keep your sender reputation clean and your messages out of spam.
๐งน Cut Fraud and Noise โ Catch throwaways and role-based aliases at the gate.
๐ฐ Save Money โ Stop paying to send to bad addresses; clean lists before campaigns.
โ๏ธ Move Faster โ Simple REST API, clear JSON, real-time results.
๐ง What TrueMailer Checks
- โ Syntax Validity: RFC-style formatting checks
- ๐ซ Disposable / Temporary Domains: Detects 10MinuteMail, TempMail, GuerrillaMail, etc.
- ๐ฅ Role-Based Aliases: Filters
admin@,info@,support@and other non-personal addresses - ๐ MX Records: Confirms whether a domain can actually receive mail
- ๐ฏ Risk Scoring: With confidence levels for decision-making
- ๐งพ Allowlist Signals: Recognizes trusted and verified domains
- ๐ก๏ธ Personal Overrides: Custom allow/block rules per team
๐ฅ Who Itโs For
Growth, Marketing, Ops Teams:
โ Fewer bounces, better segmentation, cleaner analytics, and happier CRMs.
Product & Platform Teams:
โ Prevent junk signups, improve marketplace trust, and reduce moderation load.
Developers:
โ A single POST request gives you everything you need to decide โlet in or challenge.โ
๐ป Developer Integration (Under 5 Minutes)
Endpoint:
POST https://truemailer.strivio.world/api/v2/validate
Headers:
Content-Type: application/json
X-API-Key: tm_your_api_key_here
Body:
{"email": "test@example.com"}
๐ง cURL Example
curl -X POST https://truemailer.strivio.world/api/v2/validate \
-H "Content-Type: application/json" \
-H "X-API-Key: tm_your_api_key_here" \
-d '{"email": "test@example.com"}'
๐ข JavaScript (fetch)
const res = await fetch('https://truemailer.strivio.world/api/v2/validate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'tm_your_api_key_here'
},
body: JSON.stringify({ email: 'test@example.com' })
});
const result = await res.json();
console.log(result);
๐ Python (requests)
import requests
res = requests.post(
'https://truemailer.strivio.world/api/v2/validate',
headers={
'Content-Type': 'application/json',
'X-API-Key': 'tm_your_api_key_here'
},
json={'email': 'test@example.com'}
)
print(res.json())
โ Sample Response
{
"email": "test@example.com",
"domain": "example.com",
"valid": true,
"syntax_valid": true,
"disposable": false,
"role_based": false,
"mx_records": true,
"confidence_score": 0.95,
"risk_level": "low",
"reason": "Valid email"
}
โ๏ธ Bonus Features
Quick Tests & Batch Validation
๐น GET (No Key, Quick Preview):
GET https://truemailer.strivio.world/api/validate?email=hello@example.com
๐น Batch Cleanup:
POST https://truemailer.strivio.world/api/validate-batch
{"emails": ["a@x.com", "b@y.com"]}
๐ Real Business Results
โ
Fewer failed signups & support tickets
โ
Lower bounce rates & higher inbox placement
โ
Cleaner audiences for smarter targeting
โ
Real-time protection from temp/spam domains
โ
Usage analytics & API key management for control
๐ Privacy-First, Developer-Friendly
- No data hoarding โ just validation, scored.
- Predictable JSON schema & stable endpoints.
- Works at the edge, built for performance under load.
๐ฅ High-Impact Use Cases
- Signup & onboarding gates (score โ allow/challenge/deny)
- Newsletter & lifecycle email hygiene
- B2B form enrichment (prioritize personal, not role-based)
- Marketplace & fintech trust layers (block burner accounts)
- Bulk list cleanup before major campaigns
๐ Get Started in Minutes
1๏ธโฃ Generate your API key in the dashboard
2๏ธโฃ Test live in the Playground
3๏ธโฃ Drop the POST call into your signup flow or queue processor
4๏ธโฃ Add batch cleanup to your CRM or data pipelines
๐ก Pro Tip for Teams
Set validation thresholds by funnel stage:
- โ Auto-deny disposables at signup
- ๐ Queue โmedium riskโ for double opt-in
- โ Fast-track allowlisted enterprise domains
Use personal overrides to align filters with your GTM strategy โ whitelist partners, block known abusers.
๐งฑ Built with Modern Tech
Currently powered by Next.js, TrueMailer will soon move to an even faster edge architecture with:
โก Hono + ๐ Bun + โ๏ธ Cloudflare Workers
โ Expect blazing speed, lower latency, and better scaling across regions.
๐ง Final Thoughts
If you care about deliverability, growth efficiency, or platform trust,
TrueMailer pays for itself the moment you stop emailing a bad list.
Want a live demo or quick-start code?
๐ฌ Comment โvalidateโ or DM me โ Iโll share the docs and setup snippet.
Top comments (0)