Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Content-Transfer-Encoding: 8bit

Quote Reply
Content-Transfer-Encoding: 8bit
How can i do this? Most of Russian E-mail programms didn't understand "quoted-printable"... And all of them didn't display russian simbols at 7bit...

Quote Reply
Re: Content-Transfer-Encoding: 8bit In reply to
Hi,

In Reply To:
Most of Russian E-mail programms didn't understand "quoted-printable"...
Really?! This seems very strange as quoted-printable is a standard supported by almost all mailers I am aware of (Eudora, Outlook, Netscape, etc).

However, if you need 8 bit encoding, you need to look for:

GT::Mail->send ( .. );

and add:

encoding => '8bit'

to the list of options. This will force 8bit encoding.

Cheers,

Alex

--
Gossamer Threads Inc.
Quote Reply
Re: Content-Transfer-Encoding: 8bit In reply to
Sorry, you're incorrectly understand me:

We just need to send all letters in koi-8r, (or in other tables, like cp1251 - it's a main trable in Russian - many code-tables :))), but we can't use decoder in quoted-printable...



Quote Reply
Re: Content-Transfer-Encoding: 8bit In reply to
Hi,

You could try setting:

encoding => '8bit',
'content-type' => 'text/plain; charset="koi-8r"',

in GT::Mail->send calls.

Cheers,

Alex

--
Gossamer Threads Inc.