Home > Software engineering >  DNS record validation using sendgrid with Domain.com
DNS record validation using sendgrid with Domain.com

Time:10-16

I have been unable to find any help of almost any kind for Domain.com. I am trying to set up SendGrid domain authentication. All I get is errors.

SendGrid side:

Failed
Expected CNAME for "em.....[mywebsite].com" to match "..........sendgrid.net".

Expected CNAME for "s1._domainkey.[mywebsite].com" to match "s1.domainkey.........sendgrid.net".

Expected CNAME for "s2._domainkey.[mywebsite].com" to match "s2.domainkey...........sendgrid.net". 

On the Domain.com side I set it up like this:

**Record**  **Name**             **Content**
CNAME   em....           ..........sendgrid.net
CNAME   s1._domainkey    s1.domainkey...........sendgrid.net
CNAME   s2._domainkey    s2.domainkey...........sendgrid.net

Does anyone know what I am doing wrong?

CodePudding user response:

Twilio SendGrid developer evangelist here.

If you lookup the DNS records for your domain you will see that there are no listed CNAME records. However, you will also see that your name servers are listed with Digital Ocean. So, making the changes in domain.com will not make a difference to your domain as they no longer control the name servers.

I recommend you log into Digital Ocean and set up the CNAME records for your domain there. Then you'll be well on your way to setting up your Domain Authentication with SendGrid.

  • Related