What is the Email sender? (MAIL FROM, Envelop Sender, Bounce Address)

Card Puncher Data Processing

About

The sender is an envelope email address (mailbox) that:

The sender is also known as:

  • the return path
  • the mail from address
  • the bounce address

Sender vs Author (From:)

The value is generally the author (ie the address in the from header) but in other cases such as a mailing list, it may be not.

Example

  • For a mailing list, it can be a bounce email with or without a tag (ie +)
[email protected]
  • For a single send, it can be the user
[email protected]

Return-Path Header

If there are multiple relays, the original sender can be found in the Return-Path header.

Sender Policy

In a SMTP transaction, the sender should conform to the Sender Policy Framework (SPF)

Library

Java

You set the bounce with the mail.smtp.host property

Properties props = new Properties();
props.put("mail.smtp.host", "my-mail-server");
Session session = Session.getInstance(props, null);

1) 2)





Discover More
Gmail Show Original Email
What is a Email Message ? known as Internet Message or RFC822

An email is a document that is composed of the following structure one or more headers followed by a body that may be composed of multi-parts: Text part HTML part Attachment and Inline Images...



Share this page:
Follow us:
Task Runner