Posted by Rik on 08/08/06 09:52
monomaniac21 wrote:
> Erwin Moller wrote:
>> monomaniac21 wrote:
>>
>>> hi all
>>>
>>> how can u send a plain text version of an email with the html so
>>> that the users mail client can access this plain text version?
>>>
>>> kind regards
>>>
>>> marc
>>
>> Simple: Make 2 versions.
>>
>> Or if you want to do it the very hard way: try to strip all
>> html-tags.
>>
> How does the email client know where the plain text version is
> located?
In a multipart email 2 versions are usually sent: the text en the HTML part.
headers:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="some_random_string";
before text:
--some_random_string
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
before HTML:
--some_random_string
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Where some_random_string remains the same throughout the mailobviously.
Other charsets are offcourse possible.
Grtz,
--
Rik Wasmus
[Back to original message]
|