π 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)