Mar 21, 2011
CakePHP e-mail displays weird characters (=0D=0A=0D=0A)
Cause: you’re sending your e-mail as HTML only.
Solution: send the e-mail as “both”, like this:
$this->Email->sendAs = 'both';

