[SOLVED] html email and format=flowed
Posted: Wed Apr 11, 2007 7:33 am
I changed to the newest (a very good) version of Swift. I found that the basic setting of sending multipart email changed NOT containing format=flowed
Previous version:
Without format=flowed my extensive css settings are not shown. I added following code
Actually I don't know if that's really right but I got following code to email before html part:
And it shows html right in the email reader.
Is there poossibly some problems if some email readers or servers cut line lengths to 80 chars? Or is there some better solutions to this? Thanks.
Previous version:
Code: Select all
Content-Type: text/html; charset="UTF-8"; format=flowed
Content-Transfer-Encoding: quoted-printableCode: Select all
$message->attach(new Swift_Message_Part($html, "text/html", "format=flowed"));Code: Select all
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: format=flowedIs there poossibly some problems if some email readers or servers cut line lengths to 80 chars? Or is there some better solutions to this? Thanks.