------=_NextPart_000_0018_01C43A03.75405600
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
for uncle
7 2 5 0
safe
Lets see if i remember it correctly. Just for the technical detail :p
The nextpart gives us a new boundary, followed by the first content-type: text/plain. This is intended for recipients who can see only plain text, and not HTML. The full content of the message is given in plain text.
The RFC for this is
4.1.3 Plain Subtype
The simplest and most important subtype of "text" is "plain". This indicates plain text that does not contain any formatting commands or directives. Plain text is intended to be displayed "as-is", that is, no interpretation of embedded formatting commands, font attribute specifications, processing instructions, interpretation directives, or content markup should be necessary for proper display. The default media type of "text/plain; charset=us-ascii" for Internet mail describes existing Internet practice. That is, it is the type of body defined by RFC 822.
No other "text" subtype is defined by this document.
encoding := "Content-Transfer-Encoding" ":"
"7bit" means that the data is all represented as shortlines of US-ASCII data.
So its not really a attachment, your mailer just tells you what type of content you'll get (it should normaly be hidden)
Wolve



