Enable SPF and DKIM
- Login in to your Godaddy account
- Goto WHM to manage your domain
- Select "DNS Functions" > "Enable DKIM/SPF Globally" > Proceed
- Select "DNS Functions" > "Edit DNS Zone" > your domain > Edit
The SPF and DKIM records are generated. Then copy and paste these records in the domain manager
- https://dcc.godaddy.com/manage/yourdomain.com/dns
Add DNS records
- SPF (Sender Policy Framework)
- It’s used to indicate to mail exchanges which hosts are authorized to send mail for a domain
Type | Host | Value | TTL |
TXT | @ | v=spf1 +a +mx +ip4:xx:xx:xx:xx ~all | 14400 |
- DKIM (DomainKeys Identified Mail)
Type | Host | Value | TTL |
TXT | default._domainkey | "v=DKIM1; k=rsa; p=… | 14400 |
TXT | default._domainkey.mail | "v=DKIM1; k=rsa; p=… | 14400 |
- DMARC (Domain-based Message Authentication,Reporting & Conformance)
Type | Host | Value | TTL |
TXT | _dmarc | v=DMARC1; p=none; sp=none; ruf=mailto:admin@yourdomain.com; rf=afrf; pct=100; ri=86400 | 14400 |
Reference:
- To check the DNS update progress
- https://www.whatsmydns.net/#TXT/default._domainkey.yourdomain.com
- https://www.itpison.com/itpison/?page_id=1891