---
title: "InboxKit Whitelabel Guide (2026)"
description: "Complete guide to InboxKit's whitelabel partner program. Custom branding, client management, billing integration, partner API, and agency revenue calculator."
canonical: "https://www.inboxkit.com/learn/inboxkit-whitelabel-guide"
author: "Mohit Mimani"
published: "2026-03-31"
updated: "2026-03-31"
category: "Guides"
---

# InboxKit Whitelabel Guide for Agencies

InboxKit's whitelabel program lets agencies offer email infrastructure under their own brand. Custom domain, your logo, client management, and wholesale pricing. Here is how to set it up and the revenue math behind it.

## What InboxKit Whitelabel Offers

InboxKit's whitelabel program gives agencies a fully branded email infrastructure platform they can offer to clients as their own product. Your clients see your brand, your domain, and your support. InboxKit powers everything behind the scenes.

**What is customizable:**

| Element | Customizable | Details |
|---------|-------------|--------|
| **Logo** | Yes | Your logo throughout the dashboard |
| **Brand colors** | Yes | Primary, secondary, accent colors |
| **Custom domain** | Yes | portal.youragency.com instead of app.inboxkit.com |
| **Email notifications** | Yes | From your domain, your branding |
| **Client-facing features** | Yes | Toggle which features clients see |
| **Pricing** | Yes | Set your own pricing for clients |
| **Support** | Your responsibility | You handle client support |
| **Billing** | Flexible | Wholesale from InboxKit, retail to clients |

**How it works architecturally:**
1. InboxKit provides the platform infrastructure (servers, Google/Microsoft provisioning, DNS automation, warmup)
2. You get a branded portal on your domain
3. Your clients access the portal and see only your brand
4. You buy at wholesale, sell at retail
5. InboxKit handles the technical operations

Full whitelabel setup documentation: [docs.inboxkit.com](https://docs.inboxkit.com)

## Setting Up Your Branded Portal

Setup takes about 30 minutes with InboxKit's guided process:

**Step 1: Apply for the partner program**
Contact the InboxKit partner team or apply through [inboxkit.com/partners](/partners). Whitelabel is available for agencies managing 50+ mailboxes.

**Step 2: Configure your brand**
In the partner dashboard, set:
- Company name and logo (SVG or PNG, 200x50px recommended)
- Primary brand color (hex code)
- Secondary and accent colors
- Favicon

**Step 3: Set up your custom domain**
Point your chosen subdomain to InboxKit's whitelabel servers:

```dns
; DNS records for custom domain
portal.youragency.com  CNAME  whitelabel.inboxkit.com
```

SSL certificates are provisioned automatically via Let's Encrypt.

**Step 4: Configure email notifications**
Set your sending domain for client-facing emails (welcome emails, alerts, reports). Requires SPF/DKIM configuration on your agency domain.

**Step 5: Set pricing and features**
Choose which features your clients can access and set your retail pricing. You can configure different pricing tiers for different client segments.

See [docs.inboxkit.com](https://docs.inboxkit.com) for detailed branding configuration options.

## Client Management

The partner dashboard gives you a complete client management layer on top of InboxKit's infrastructure:

**Client features:**

| Feature | Description | Configuration |
|---------|------------|---------------|
| **Client accounts** | Separate login for each client | Email + password or SSO |
| **Resource isolation** | Each client sees only their domains/mailboxes | Automatic |
| **Feature toggles** | Control which features each client accesses | Per-client |
| **Usage limits** | Set max domains/mailboxes per client | Per-client |
| **Sub-billing** | Track per-client costs | Automatic |
| **Activity logs** | Monitor client actions | Read-only |

**Client onboarding workflow:**
1. Create client account in partner dashboard
2. Set their domain and mailbox limits
3. Configure which features they can see
4. Send them login credentials
5. Client manages their own domains and mailboxes within your platform

**For agencies managing clients hands-on:** You can manage all infrastructure from a single partner dashboard and only give clients read-only access or no access at all. Some agencies prefer to keep all infrastructure management in-house.

See [docs.inboxkit.com](https://docs.inboxkit.com) for client management documentation.

## Revenue Model: The Agency Math

The whitelabel model creates a recurring revenue stream from email infrastructure management. Here is the math:

**Wholesale pricing (what you pay InboxKit):**
Partner pricing varies by volume commitment. Contact the partner team for exact rates.

**Retail pricing (what you charge clients):**
You set your own prices. Common agency pricing models:

| Model | How It Works | Example |
|-------|-------------|--------|
| **Per-mailbox markup** | Charge $5-8/mailbox/mo | 100 mailboxes at $6 = $600/mo revenue |
| **Flat monthly retainer** | Infrastructure included in management fee | $500-2,000/mo per client |
| **Tiered packages** | Starter/Growth/Enterprise bundles | $199/$499/$999 per month |
| **Cost-plus** | Wholesale + fixed markup % | 40-60% margin on infrastructure |

**Revenue calculator at different scales:**

| Clients | Mailboxes/Client | Total Mailboxes | Retail at $6/mb | Monthly Revenue | Annual Revenue |
|---------|-----------------|----------------|----------------|----------------|----------------|
| 5 | 20 | 100 | $6.00 | **$600** | **$7,200** |
| 10 | 30 | 300 | $6.00 | **$1,800** | **$21,600** |
| 20 | 40 | 800 | $5.50 | **$4,400** | **$52,800** |
| 50 | 50 | 2,500 | $5.00 | **$12,500** | **$150,000** |

**Key insight:** Email infrastructure is a sticky, recurring revenue stream. Once clients are set up on your platform, switching costs are high (DNS migration, new warmup cycle). Retention rates for infrastructure services typically exceed 90% annually.

That stickiness also makes infrastructure a useful retention tool when a client's budget tightens. [The Playbook Agency cut churn 80%](/case-studies/playbook-white-label-downsell-model-inboxkit) by offering whitelabel infrastructure as a downsell tier instead of losing accounts outright, and grew infrastructure revenue 30% in the process.

## Partner API: Programmatic Client Management

The Partner API extends InboxKit's standard API with multi-tenant capabilities for managing clients programmatically:

```bash
# List all clients
curl -H "Authorization: Bearer PARTNER_API_KEY" \
  https://api.inboxkit.com/v1/partner/clients

# Create a new client
curl -X POST -H "Authorization: Bearer PARTNER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Acme Corp", "email": "admin@acme.com", "maxMailboxes": 50}' \
  https://api.inboxkit.com/v1/partner/clients

# Provision mailboxes for a client
curl -X POST -H "Authorization: Bearer PARTNER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"clientId": "client_123", "email": "outreach@acmedomain.com", "provider": "google"}' \
  https://api.inboxkit.com/v1/partner/mailboxes
```

**Partner-specific endpoints:**

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /partner/clients | List all your clients |
| POST | /partner/clients | Create a client account |
| GET | /partner/clients/:id | Get client details |
| PUT | /partner/clients/:id | Update client settings |
| GET | /partner/billing | View wholesale billing |
| GET | /partner/usage | Usage breakdown by client |

Full partner API documentation: [docs.inboxkit.com](https://docs.inboxkit.com)

## Whitelabel vs Direct Reselling

Agencies have two options for offering email infrastructure to clients: whitelabel (branded platform) or direct reselling (managing InboxKit accounts on behalf of clients).

Here is how they compare:

## Agency Success Playbook

Based on our most successful whitelabel partners, here is the playbook for building a profitable email infrastructure offering:

**Phase 1: Foundation (Month 1)**
- Set up whitelabel portal with your branding
- Create 3 pricing tiers (starter, growth, agency)
- Onboard your first 2-3 existing clients
- Build internal documentation for your team

**Phase 2: Growth (Month 2-3)**
- Add infrastructure as an upsell to existing campaign management clients
- Create a landing page for your branded infrastructure service
- Build onboarding automation using the Partner API
- Target agencies that need infrastructure for their clients

**Phase 3: Scale (Month 4+)**
- Automate client provisioning and billing
- Add monitoring dashboards to your client reporting
- Build case studies from early clients
- Consider offering infrastructure-only plans for non-campaign clients

**Pricing strategy that works:** Start at $5-6/mailbox/mo for clients. This gives you healthy margins while remaining competitive with direct InboxKit pricing. Clients pay a premium for your support, expertise, and bundled services.

**The support question:** The #1 concern agencies have about whitelabel is support burden. In practice, InboxKit's automation handles 90% of infrastructure operations. The support you provide is primarily onboarding guidance and campaign strategy. which is your expertise anyway.

**Use infrastructure as your downsell:** When a client cannot renew the full retainer, offer infrastructure on its own rather than letting them go. It is recurring, it requires almost none of your labor, and it keeps the relationship alive. [See how Playbook built this into a downsell tier](/case-studies/playbook-white-label-downsell-model-inboxkit) and won 30% of those clients back into paid services.

Ready to get started? Apply at [inboxkit.com/partners](/partners) or see the full whitelabel documentation at [docs.inboxkit.com](https://docs.inboxkit.com).

## Frequently asked questions

### What is the minimum commitment for whitelabel?

The whitelabel program requires a minimum of 50 mailboxes under management. This can be spread across multiple clients. Contact the partner team for specific pricing at your expected volume.

### Can I set my own pricing for clients?

Yes. You buy at wholesale from InboxKit and set whatever retail price you want for your clients. Most partners charge $5-8 per mailbox per month, creating a 40-60% margin.

### Do my clients know InboxKit is behind the platform?

No. The whitelabel experience is fully branded with your logo, colors, domain, and emails. Clients interact only with your brand. InboxKit branding is completely removed.

### Who handles client support?

You handle all client-facing support. InboxKit provides partner-level support to you for technical issues. InboxKit's automation handles most infrastructure operations automatically.

### Can I use the Partner API to automate everything?

Yes. The Partner API supports full programmatic control. client creation, mailbox provisioning, DNS management, and billing. Many partners build automated onboarding flows that require zero manual intervention.

## Sources

- [InboxKit Whitelabel Documentation](https://docs.inboxkit.com) (2026)
- [InboxKit Partner API](https://docs.inboxkit.com) (2026)
- [InboxKit Branding Configuration](https://docs.inboxkit.com) (2026)
- [InboxKit Client Management](https://docs.inboxkit.com) (2026)
- [InboxKit Partner Program](https://www.inboxkit.com/partners) (2026)

## Related

- https://www.inboxkit.com/learn/inboxkit-review
- https://www.inboxkit.com/learn/agency-workflows-guide
- https://www.inboxkit.com/learn/inboxkit-api-integration-guide
- https://www.inboxkit.com/learn/best-email-infrastructure-agencies
- https://www.inboxkit.com/learn/inboxkit-pricing
