SPF: If you already have an SPF record, add include:_spf.mail.gorillaa.one to your existing record instead of creating a new one. Only one SPF record is allowed per domain.
DNS provider examples
Cloudflare: Go to DNS → Add Record. Set type, name, and content. Proxy must be off (DNS only) for CNAME records.Route 53: Go to Hosted Zones → your domain → Create Record. Use “Simple routing” for each record.GoDaddy: Go to My Products → DNS → Add Record. For the host field, use just the subdomain part (e.g. _gorillaa-verify instead of the full hostname).
If verification fails, success will be false and the errors array will describe which checks failed:
Copy
{ "data": { "success": false, "status": "pending", "domain_verified": false, "dkim_verified": false, "errors": [ "TXT verification record not found", "DKIM CNAME record not found" ] }}
Verification requires the TXT record (_gorillaa-verify). DKIM is checked separately via its CNAME record. We strongly recommend configuring all four DNS records for best deliverability.
New domains start with limited daily sending capacity that gradually increases:
Day
Daily limit
1
20
2
40
3
80
4
160
5
320
6
640
7
1,280
14
2,560
21
5,120
28
10,000
35+
Unlimited
The warming status is visible in the domain response (warming_status field):
Status
Meaning
not_started
Domain verified but no emails sent yet
warming
Active warming — limits are gradually increasing
warmed
Domain is fully warmed, no volume restrictions
paused
Warming paused due to high bounce/complaint rate
If your bounce rate exceeds thresholds during warming, the process is automatically paused to protect your sender reputation. Investigate bounces before resuming.
Rotate your DKIM signing keys without changing any DNS records:
Copy
curl -X POST https://api.mail.gorillaa.one/v1/domains/dom_abc123/rotate-dkim \ -H "Authorization: Bearer YOUR_API_KEY"
Because DKIM is configured via a CNAME record pointing to Gorillaa’s infrastructure, we update the signing key on our side. No DNS changes needed. The old key remains valid for 48 hours to handle DNS propagation.