Why does the opencart mail class encode the senders name?
$header .= 'From: ' . '=?UTF-8?B?' . base64_encode($this->sender) . '?=' . '<' . $this->from . '>' . $this->newline;
Is this an old technique? I haven’t seen it like this before.
Are there any disadvantages to encoding it?
Quoted from Wikipedia: