Glossary
TXT Record
A TXT record stores arbitrary text in DNS, widely used for domain verification and email authentication policies like SPF, DKIM, and DMARC.
A TXT record holds free-form text in the DNS zone. Originally for human notes, it has become the standard place to publish machine-readable policy and verification strings.
Common uses
- Email authentication —
spf,dkim, anddmarcpolicies are all published as TXT records. - Domain ownership verification — services ask you to add a unique TXT string to prove you control the domain.
- Configuration discovery — some tools read settings from specially named TXT records.
Example
example.com. 3600 IN TXT "v=spf1 include:_spf.google.com ~all"
Why it matters for hosting
TXT records are how you connect your domain to third-party services without changing where it points. Because anything can be stored, syntax matters: a malformed spf or dkim TXT record silently breaks email authentication while the rest of the domain keeps working.
See also
