I won't mention the wasted hours I spent trying to resolve this one, so thought i'd save you some pain. Basically boils down to line breaks.
The email component has them set as : $_newLine = "\r\n"; Setting it to '\n' seemed to fix it for me. $this->Email->_newLine = "\n"; I do an svn update most days to grab the latest cake updates and noticed that the line breaks in v7220 of the email component is now set to "\n", so the problem should be fixed in a future release. cheers jason On Jun 19, 2:08 am, aranworld <[EMAIL PROTECTED]> wrote: > When sending email with the Email Component, some of my emails include > the following types of headers in the body of the message: > > ---- > Content-Type: text/plain; charset=UTF-8 > > Content-Transfer-Encoding: 7bit > Message-Id: <[EMAIL PROTECTED]> > Date: Wed, 18 Jun 2008 11:01:31 -0500 (CDT) > ---- > > Anyone know if there is a way via CakePHP to prevent these headers > from appearing in the recieved messages? It happens in both text and > html email. > > -Aran --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
