Skip to content

Instantly share code, notes, and snippets.

@AmruthPillai
Last active April 28, 2023 07:45
Show Gist options
  • Save AmruthPillai/c75a805cfeb448e005306a0934211b0f to your computer and use it in GitHub Desktop.
Save AmruthPillai/c75a805cfeb448e005306a0934211b0f to your computer and use it in GitHub Desktop.
Zeit/Vercel Now CLI: Zoho Mail Setup

Run these lines on your command line one-by-one to ensure they are properly set. Make sure you replace the yourdomain.com, dkimKey and verifyCode variables before running.

now dns add yourdomain.com '@' TXT zoho-verification=verifyCode
now dns add yourdomain.com '@' MX mx.zoho.com 10
now dns add yourdomain.com '@' MX mx2.zoho.com 20
now dns add yourdomain.com '@' MX mx3.zoho.com 50

# SPF
now dns add yourdomain.com '@' TXT "v=spf1 include:zoho.com ~all"

# DKIM
now dns add yourdomain.com 'dkimKey._domainkey' TXT "v=DKIM1; k=rsa; p=DKIM_VALUE"

The changes do take a while to propogate, but this should be enough to get your new domain running on Zoho in no time.

@edubeacon
Copy link

possible to get a step by step guide, new to the platform

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment