Set Up Instantly for Cold Email
Set up Instantly accounts and sending domains for cold outreach
Instructions
Set Up Instantly for Cold Email
Prerequisites
- Instantly account (Growth plan or higher for API access)
- Secondary domain purchased for cold outreach (never use your primary domain)
Steps
-
Purchase sending domains. Buy 2-3 secondary domains similar to your primary domain. Example: if your company is acme.com, buy acmehq.com, getacme.com, tryacme.com. Use a registrar like Namecheap or Cloudflare. Cost: ~$10-15 per domain per year.
-
Set up DNS records. For each domain, configure via your registrar's API or DNS management:
- SPF:
v=spf1 include:instantly.ai ~all - DKIM: Generated by Instantly (retrieve via
GET /api/v1/account/dkim) - DMARC:
v=DMARC1; p=noneThese records tell email providers your sending is legitimate.
- SPF:
-
Create sending accounts. Set up Google Workspace or Microsoft 365 accounts on each domain. Create 2-3 mailboxes per domain (e.g., dan@acmehq.com, daniel@acmehq.com). This gives you 4-9 sending accounts across your domains.
-
Connect accounts via API. Use the Instantly API to connect each mailbox:
POST /api/v1/account/add { "email": "dan@acmehq.com", "provider": "google", "smtp_host": "smtp.gmail.com", "smtp_port": 587 }Verify each connection sends and receives successfully by checking the account status endpoint.
-
Set sending limits via API. Configure each account's daily limit:
PATCH /api/v1/account/<email>/settings { "daily_limit": 30 }Start at 30 emails/day. After 2 weeks of warmup, increase to 50. Never exceed 75 per account per day.
-
Add a professional signature. Set up a simple text-only signature: Name, Title, Company, website link. Avoid images, HTML, or tracking pixels in the signature -- these hurt deliverability. Configure via
PATCH /api/v1/account/<email>/signature.