What is the Email Content-Type Header (ie MIME)?

About

Content-type is a email headers that defines:

  • the type of the body
  • or the type of one of the body parts

Example

Where the first parameter is the media type (mime)

Single part

  • HTML
Content-Type: text/html; charset="UTF-8"
  • Plain Text
Content-Type: text/plain; charset="UTF-8"
Content-Type: message/rfc822
  • Delivery Status
Content-Type: message/delivery-status
  • Attached Image
Content-Type: image/png; name="icon.png"
Content-Disposition: attachment; filename="icon.png"
Content-Transfer-Encoding: base64
Content-ID: <icon.png>

Multipart

Multipart media type means that the body is composed of multiple single part

  • Multipart alternative. The parts are alternative to each other and represent the same content. The client can show one or the other part. Normally used to show a text if the client does not support HTML rendering.
Content-Type: multipart/alternative; boundary="0000000000008c12850607c40b30"
  • Multipart related. The parts are related but do not represent the same content.
Content-Type: multipart/related; boundary="0000000000008c12780607c40b2f"
  • Multipart report (in case of a bounce)
Content-Type: multipart/report; boundary="0000000000008c07b00607c40b27"; report-type=delivery-status

Syntax

It has the same functionality and syntax than the HTTP content type header

Namely:

Content-Type: mediaType; parameter1=value1; parameter2=value2

where:





Discover More
What are email headers?

Email header are the most important part for email routing and this articles regroups the main logic about them
What is the Mime (Multipurpose Internet Mail Extensions) ?

In the context of email, mime may have two different definitions: the encoding of a email. the media type The mime is just the text structure of an email message (known as mime message). Example:...
What is the message body of an email? (also known as Content)

The last part of the email message is called the body or the content of the message. It is what the user will see. An email has a content part with a mime type (format) that is set with the content-type...



Share this page:
Follow us:
Task Runner