Send via API or SMTP, validate addresses before sending, read your DMARC reports, monitor your IPs, and track every event. One platform, nothing else to manage.
Built exclusively for transactional email. Transparent pricing, honest limits, no surprises.
Password resets, order confirmations, invoices: the emails your users need to receive. No template editors, no campaign builders, no contact lists. That focus is why we deliver better and cost less.
Sending, email validation, DNS alerts, DMARC reports, IP warmup, delivery stats. One platform for your entire email infrastructure. No need to stitch together separate tools.
Sending stops at your plan limit. No overage charges, no per-email fees past your quota. You always know what you will pay.
Every plan has the same capabilities. You only choose a volume. No feature gating, no add-ons, no tiers where key features are locked behind a higher price.
No contact list limits on any plan. Send to as many unique recipients as your volume allows. Other providers cap contacts on free and lower tiers, quietly limiting what you can actually do.
Servers, databases, and backups hosted exclusively in the European Union. No US-owned cloud providers, no Cloud Act exposure. GDPR compliant by design. Data Processing Agreement available on all plans.
Reliable delivery, clear reporting, and full visibility on every email. Nothing more, nothing less.
Send via a single REST endpoint or drop in our SMTP relay. Four environment variables and you're live. Service accounts with granular permissions and API key management.
Validate emails on your signup forms to collect only real addresses, and verify your existing lists before sending to reduce bounces. MX record checks, disposable domain detection, typo correction, and bounce prediction based on our delivery history.
Custom tracking links, bounce return-path, and BIMI, all configured with your own domain from the portal. No Mailverick branding on any plan. Your recipients only see your name.
12 event types track each email from delivery attempt to engagement. Bounce classification, opt-out handling, and complaint processing included. Every event includes clear error reasons so you know exactly what happened and what to do about it.
Delivery rates, bounce rates, opens, clicks at a glance. Monitor IP reputation and warmup progress. DMARC aggregate reports parsed into a readable dashboard, no more decoding XML.
Works for a solo developer or a full team. Three roles (Owner, Admin, Member) give you fine-grained control. Create separate organizations under one account, each with its own domains, IP pools, and analytics. Service accounts with granular API keys and usage tracking, all self-service from the portal.
Dedicated IPs are included with your volume. No add-on to purchase, no extra line on your bill. Your sending volume determines your allocation automatically.
Every sending domain is continuously monitored. When something breaks, you know immediately and get clear instructions to fix it.
# 1. Get a token
curl -X POST https://api.mailverick.com/v1/token \
-H "Content-Type: application/json" \
-d '{
"api_key_id": "mvk_key_xxx",
"api_key_secret": "mvk_sec_xxx"
}'
# 2. Send
curl -X POST https://api.mailverick.com/v1/send-email \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json" \
-d '{
"requests": [{
"from": { "email": "you@yourdomain.com" },
"to": [{ "email": "user@example.com" }],
"subject": "Hello",
"body": { "html": "<p>Hello!</p>" }
}]
}' import { Mailverick } from "@bytewise-solutions/mailverick";
const client = new Mailverick("mvk_key_xxx", "mvk_sec_xxx");
await client.sendEmail({
from: { email: "you@yourdomain.com" },
to: [{ email: "user@example.com" }],
subject: "Hello",
body: { html: "<p>Hello!</p>" },
}); SMTP_HOST=smtp-in.mailverick.com
SMTP_PORT=25
SMTP_USER=mvk_key_xxxxxxxxxx
SMTP_PASS=mvk_sec_xxxxxxxxxx
# Works with Django, Rails, Laravel, Spring, Node.js, PHP, Go... HMAC-SHA256 signed payloads pushed to your endpoint. Configure timeout, rotate secrets, and manage multiple subscribers.
Push events directly to your GCP Pub/Sub topic with your own credentials.
Route events to your AWS SNS topics and integrate with your existing AWS infrastructure.
Deliver events to Azure Event Grid for seamless integration with your Azure services.
Every sending plan already includes email validations. Need to validate beyond your plan's limit? Add an extra pack.
1,000 free emails/month to unlimited recipients. All features included. Upgrade when you're ready.