Email glossary

The email glossary, defined

Every technical term used across the SMTPedia reference, defined clearly and cross-linked to its full deep-dive. From SPF to X-Headers, grouped by concept.

13 entries Cross-linked Updated continuously

Email has a vocabulary problem. The same word means different things depending on whether you are a marketer, a developer, or a deliverability engineer. "Bounce" can mean anything from a hard address failure to a policy rejection to a full pipeline failure. "Reputation" spans domain reputation, IP reputation, and sender reputation, which are three related but distinct signals.

This glossary covers the terms that matter for email infrastructure and deliverability. Each entry starts with a plain-language definition, then links to the practitioner deep-dive where the full context lives. Grouped by concept rather than alphabet so related terms cluster naturally: authentication terms together, DNS terms together, delivery terms together.

If you are onboarding onto an email team, working through a deliverability audit, or just want to make sure everyone in a meeting means the same thing by "warm-up", start here.

Frequently asked questions

Where do I start if I am new to email infrastructure?

Learn SPF, DKIM, and DMARC first: they are the authentication foundation and every other topic references them. Then MX (how mail is routed) and PTR (why receivers trust your outbound IPs). Then bounce handling (how to react when things fail). This gives you the vocabulary to read production incidents and pick up specialized topics as needed.

What is the difference between deliverability and inbox placement?

Deliverability is whether your message was accepted by the receiver (technically delivered, not bounced). Inbox placement is where the accepted message ended up: inbox, promotions tab, spam folder, or dropped silently after acceptance. A message can have 100 percent deliverability and near-zero inbox placement if the receiver accepts everything and filters aggressively. Modern email metrics track both.

Are SPF, DKIM, and DMARC all still required in 2026?

Yes, and increasingly enforced. Gmail and Yahoo bulk sender rules (2024) require SPF and DKIM to pass, DMARC to be published, and DMARC alignment for high-volume senders. Microsoft has moved in the same direction. Missing any of the three now produces measurable delivery drops. The old "just SPF is enough" advice is dead.

What is the difference between a bounce and a rejection?

In modern usage they overlap, but the distinction matters. A bounce is a delivery failure notice returned to the sender (usually as a DSN following RFC 3463/3464). A rejection is the SMTP-level response from the receiver refusing the message during the transaction (5xx code). Every rejection produces a bounce; not every bounce comes from a clean rejection (silent drops and post-acceptance filtering exist too).

What is FCrDNS and why does Gmail check it?

FCrDNS stands for Forward-Confirmed Reverse DNS: the sending IP has a PTR record pointing to a hostname, and that hostname resolves via A/AAAA back to the same IP. This closes the identity loop and prevents PTR spoofing. Gmail and Yahoo have enforced FCrDNS since the 2024 bulk sender rules; missing or broken FCrDNS produces 550 5.7.25 rejections that no other fix will resolve.

What is the difference between IMAP and POP3?

IMAP keeps mail on the server and syncs state across devices; read a message on your phone, it shows as read on your laptop. POP3 downloads mail to the local device and (by default) deletes it from the server. IMAP is the modern default for multi-device use; POP3 only makes sense for single-device, offline-first workflows with tight server storage. Both are retrieval protocols; SMTP is the sending protocol.