API sending and business inboxes in one hosting stack.
Host Little combines custom-domain mailboxes, DNS authentication checks, and a clean sending endpoint inside the same portal you use for hosting.
Deliverability layer
Mailboxes, DNS, API keys, and logs share one control plane.
Sending API
Send transactional mail from your app with scoped API keys, verified senders, and delivery logs in the portal.
Business inboxes
Create custom-domain mailboxes for standard IMAP, SMTP, webmail, Apple Mail, Outlook, and mobile clients.
Verified DNS
SPF, DKIM, DMARC, mailbox, and transactional sending records live in one DNS packet so the domain can be checked before sending unlocks.
Delivery logs
Review recent sends, failures, recipients, and subjects without leaving the hosting control plane.
Developer API
HTTP in. Verified mail out.
Generate a key in the portal, send through the endpoint, and watch delivery events arrive in the same dashboard.
curl -X POST https://hostlittle.com/api/v1/email/send \
-H "Authorization: Bearer hl_email_..." \
-H "Content-Type: application/json" \
-d '{
"from": "[email protected]",
"to": "[email protected]",
"subject": "Welcome aboard",
"html": "<h1>Welcome to Host Little</h1>"
}'const res = await fetch("https://hostlittle.com/api/v1/email/send", {
method: "POST",
headers: {
Authorization: "Bearer hl_email_...",
"Content-Type": "application/json"
},
body: JSON.stringify({
from: "[email protected]",
to: "[email protected]",
subject: "Welcome aboard",
html: "<h1>Welcome to Host Little</h1>"
})
});
const data = await res.json();Included quotas
Email comes with the hosting plan.
No separate workspace bill just to get domain mail. Each hosting tier includes mailbox capacity and transactional sending.
Starter
$25/mo
Growth
$65/mo
Agency
$175/mo
Why it matters
Email is usually stitched together across hosting, mailbox vendors, DNS, and transactional providers. Host Little keeps those layers inspectable from one portal.
Deploy your app. Secure your email. Keep one control plane.
Host Little bundles hosting, business inboxes, DNS visibility, and transactional mail under one technical portal.