I had to change the encodeUtf8() function to receive messages on Gmail and Yahoo: ```` public function encodeUtf8($value) { $value = trim($value); return mb_detect_encoding($value) === 'ASCII' ? $value : $this->encodeUtf8Word($value); } ````