search
top

What happens (technically) when you send an email

What happens technically when you send an e-mail

Send e-mail

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';

top