Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124


When you create a DNS record on Godaddy or Cloudflare or any other DNS provider, have you asked the question:
❓ What’s the difference between CNAME, TXT and MX records ❓
Here is the differences between these types of DNS records:
✅CNAME (Canonical Name) records:
– Used to create an alias from one domain name to another.
– For example, if you want “www.website.com” to point to “website.com”, you use a CNAME.
– Cannot be used on the root domain (apex domain).
✅TXT records:
– Allow you to add free text associated with a domain.
Often used for:
– Domain ownership verification (Google, Microsoft, etc.)
– SPF configuration for e-mail.
– Storing various configuration information.
✅MX (Mail Exchange) records:
– Specifically used for e-mail routing.
– Indicate which servers are responsible for receiving e-mail for your domain.
– Include a priority (a number) that determines the order in which mail servers should be contacted.
For example, if you use Google Workspace, you’ll have MXs pointing to Google mail servers.
A concrete example:
# CNAME for domaine name
CNAME www.website.ca website.com
# TXT for SPF
TXT domain.com “v=spf1 include:_spf.google.com ~all”
# MX for Gmail
MX domain.com 1 aspmx.l.google.com
MX domain.com 5 alt1.aspmx.l.google.com
Thanks