Envelope Sender
The address used in SMTP communication for bounce handling, which may differ from the visible From address.
Definition
The envelope sender (also called MAIL FROM, return-path, or bounce address) is the email address specified during the SMTP conversation that identifies where bounces and delivery status notifications should be sent. This technical address can differ from the visible 'From' address seen by recipients. It is used for authentication checks and handling delivery failures.
Why It Matters
Understanding envelope sender is important for authentication and bounce handling. SPF checks validate the envelope sender, not the From address. If these are misaligned, it can cause authentication failures. The envelope sender also determines where bounce notifications are delivered for list hygiene.
How It Works
During SMTP transmission, the envelope sender is declared in the MAIL FROM command before message content. Receiving servers use this for SPF validation and know where to send bounce messages. The From header (visible to recipients) is separate - this allows ESPs to handle bounces while showing your brand in the From field.
Example
How envelope sender differs from From address:
SMTP conversation: MAIL FROM:<[email protected]> β Envelope sender RCPT TO:<[email protected]> DATA From: [email protected] β Visible From address To: [email protected] Subject: Your Newsletter
The recipient sees: From: [email protected] Bounces go to: [email protected] (your ESP's system)
Best Practices
- 1Ensure SPF includes both envelope sender domain and From domain
- 2Use DMARC alignment to connect envelope and From domains
- 3Configure proper bounce handling for the envelope sender
- 4Understand your ESP's bounce handling infrastructure
- 5Check envelope sender when troubleshooting SPF failures