3.1.3 MIME Message Containing Only Inline Attachments

The following example demonstrates a MIME-formatted message that contains only inline attachments, as described in section 2.1.3.4.

  
 From: <john@contoso.com>
 To: <imtiaz@contoso.com>
 Subject: Example with inline attachment.
 Date: Mon, 10 Mar 2008 14:36:46 -0700
 MIME-Version: 1.0
 Content-Type: multipart/related; boundary="simple boundary"
  
 --simple boundary
 Content-Type: text/html;
  
 ...Text with reference...
  
 --simple boundary
 Content-Type: image/png; name="inline.PNG"
 Content-Transfer-Encoding: base64
 Content-ID: <6583CF49B56F42FEA6A4A118F46F96FB@example.com>
 Content-Disposition: inline; filename=" inline.png"
  
 ...Attachment data encoded with base64...
 --simple boundary--