To add SPF, DKIM, and DMARC records to HubSpot, follow these steps:
SPF (Sender Policy Framework) Record:
- Access DNS Manager: Log in to your domain provider's DNS manager.
- Create SPF Record: If you don't have an SPF record, create a TXT record with the value:
v=spf1 include:_spf.hubspot.com ~all
. If an SPF record exists, addinclude:_spf.hubspot.com
to it without creating a new one.
DKIM (DomainKeys Identified Mail) Record:
- Enable DKIM in HubSpot: Go to your HubSpot account settings, navigate to the domain section, and enable DKIM. HubSpot will generate a DKIM key for you.
- Add DKIM Record to DNS: Copy the DKIM key provided by HubSpot and create a TXT record in your DNS manager with the name and value specified by HubSpot.
DMARC (Domain-based Message Authentication, Reporting, and Conformance) Record:
- Review SPF and DKIM: Ensure that SPF and DKIM are correctly set up and validated.
- Create DMARC Record: Add a DMARC TXT record to your DNS. The value should be set according to your policy preference, e.g.,
v=DMARC1; p=none; rua=mailto:your_email@example.com
, wherep=none
is the policy (could bequarantine
orreject
for stricter policies) andrua
is the email address for aggregate reports.
Watch and learn
Key Points:
- Verify Records: After adding or updating these records, use online tools to verify SPF, DKIM, and DMARC records.
- Propagation Time: DNS changes can take up to 48 hours to propagate globally.
- HubSpot Documentation: Consult HubSpot's official documentation or support for specific instructions or troubleshooting steps.
Note: The exact steps can vary based on your domain registrar or DNS provider, so refer to their specific instructions if needed.