This is a discussion on PHP Mail functions within the PHP Programming forums, part of the Web Development category; MIME is an Internet standard that extends the format of e-mail to support: * text in character sets other than ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| MIME is an Internet standard that extends the format of e-mail to support: * text in character sets other than US-ASCII;
__________________ With, J. Jeyaseelan Everything Possible |
| Sponsored Links |
| |||
| MIME's use, however, has grown beyond describing the content of e-mail to describing content type in general. Virtually all human-written Internet e-mail and a fairly large proportion of automated e-mail is transmitted via SMTP in MIME format. Internet e-mail is so closely associated with the SMTP and MIME standards that it is sometimes called SMTP/MIME e-mail. The content types defined by MIME standards are also of importance outside of e-mail, such as in communication protocols like HTTP for the World Wide Web. HTTP requires that data be transmitted in the context of e-mail-like messages, even though the data may not actually be e-mail.
__________________ With, J. Jeyaseelan Everything Possible |
| |||
| MIME defines mechanisms for sending other kinds of information in e-mail. These include text in languages other than English using character encodings other than ASCII, and 8-bit binary content such as files containing images, sounds, movies, and computer programs. MIME is also a fundamental component of communication protocols such as HTTP, which requires that data be transmitted in the context of e-mail-like messages even though the data might not fit this context. Mapping messages into and out of MIME format is typically done automatically by an e-mail client or by mail servers when sending or receiving Internet (SMTP/MIME) e-mail.
__________________ With, J. Jeyaseelan Everything Possible |
| |||
| The basic format of Internet e-mail is defined in RFC 2822, which is an updated version of RFC 822. These standards specify the familiar formats for text e-mail headers and body and rules pertaining to commonly used header fields such as "To:", "Subject:", "From:", and "Date:". MIME defines a collection of e-mail headers for specifying additional attributes of a message including content type, and defines a set of transfer encodings which can be used to represent 8-bit binary data using characters from the 7-bit ASCII character set. MIME also specifies rules for encoding non-ASCII characters in e-mail message headers, such as "Subject:", allowing these header fields to contain non-English characters.
__________________ With, J. Jeyaseelan Everything Possible |
| |||
| MIME is extensible. Its definition includes a method to register new content types and other MIME attribute values. The goals of the MIME definition included requiring no changes to extant e-mail servers, and allowing plain text e-mail to function in both directions with extant clients. These goals were achieved by using additional RFC 822-style headers for all MIME message attributes and by making the MIME headers optional with default values ensuring a non-MIME message is interpreted correctly by a MIME-capable client. A simple MIME text message is therefore likely to be interpreted correctly by a non-MIME client although it has e-mail headers the non-MIME client won't know how to interpret. Similarly, if the quoted printable transfer encoding (see below) is used, the ASCII part of the message will be intelligible to users with non-MIME clients.
__________________ With, J. Jeyaseelan Everything Possible |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to send mail from php? | sureshbabu | PHP Programming | 4 | 04-03-2008 02:21 AM |
| How to Send mail using dot net ...? | a.deeban | ASP and ASP.NET Programming | 9 | 01-17-2008 09:20 PM |
| e-mail from an ASP.NET | Arun | ASP and ASP.NET Programming | 3 | 09-20-2007 10:28 PM |
| What are Virtual Functions? How to implement virtual functions in "C"? | Sabari | C and C++ Programming | 4 | 09-10-2007 11:35 PM |
| mail function | vijayanand | PHP Programming | 2 | 08-03-2007 12:55 AM |