Skip to main content

How to Fix Multiple SPF Records

What this is

A guide to resolving the “multiple SPF records” error.


Why it matters

Having more than one SPF record causes validation failures.


What to do

  1. Locate all SPF records in your DNS

  2. Combine them into a single record

  3. Include all sending platforms in one line

  4. Remove duplicate SPF records

  5. Save changes


Example fix

Before:

v=spf1 include:_spf.google.com ~all

v=spf1 include:sendgrid.net ~all

After:

v=spf1 include:_spf.google.com include:sendgrid.net ~all


Expert insight

You can only have ONE SPF record per domain. Everything must be combined.


Did this answer your question?