Line Breaks in Entourage Emails

3

I have an entoruage client that when it receives HTMl emails, it completely ignores any line breaks in teh HTML, text just shows up all together. These mails look fine in Outlook and in webmail, just entourage. How can I get it to recognise these line breaks?

Sam Cogan

Posted 2009-07-29T17:13:13.997

Reputation: 974

Answers

2

I think Entourage still does not support format=flowed, like in:

Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes

Maybe the HTML mails you get (erroneously) rely on that? We would have to see some e-mail headers and a bit of the content to ensure that's the reason though.

Maybe you can write some script to fix it, just like an issue with ActiveSync, for which you can Use AppleScript to read ActiveSync Sent Items in Entourage. But then we'd still need to see some detailed information.

(Shameless Mail.app plug, incase you're on 10.5 or later: Mail works great with Time Machine. You can even restore single messages from accounts that you have already deleted altogether. Just first activate Mail and then enter Time Machine. Bye bye Entourage...)

Arjan

Posted 2009-07-29T17:13:13.997

Reputation: 29 084

0

It actually sounds like it is doing the right thing here. In HTML, a plain old linebreak character has no meaning. To do a linebreak in html, you need to use a <br /> tag, or enclose your text in <p></p> tags.

Macha

Posted 2009-07-29T17:13:13.997

Reputation: 4 772

While it's doing the right thing, linebreaks should be converted into <br/> anyway. Preferably in the client! – Phoshi – 2009-10-03T14:01:44.440

The client of the sender, more importantly. – Macha – 2009-10-03T14:44:57.613

Yeah, that's what I meant - sorry for being unclear :) – Phoshi – 2009-10-03T14:49:30.633

0

HTML < br /> or < p>< /p> (good for HTML 4 transitional)

JL.

Posted 2009-07-29T17:13:13.997

Reputation: 5 578

0

Just had the same problem with Entourage. Using "<br>" instead of "<br/>" solved the problem.

Haluk

Posted 2009-07-29T17:13:13.997

Reputation: 153