3.1.4 MIME Message Containing Only Non-Inline Attachments
The following example demonstrates a MIME-formatted message that contains only non-inline attachments, as described in section 2.1.3.4.
-
From: <john@contoso.com> To: <imtiaz@contoso.com> Subject: Example with non-inline attachment. Date: Mon, 10 Mar 2008 14:36:46 -0700 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="simple boundary" --simple boundary Content-Type: text/plain; ...Text without reference... --simple boundary Content-Type: image/png; name=" Attachment" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Attachment.png" ...Attachment data encoded with base64... --simple boundary--