Merhabalar,

smtp ayarlarında smtp url'nin başına: ssl:// ekleyelim.

Ardından:
system\library\mail.php dosyasında:
public $newline = "\r\n"; kodunu
public $crlf = "\r\n";
diye değiştirelim.

Ardından:
if ($this->verp) {fputs($handle, 'MAIL FROM: <' . $this->from . '>XVERP' . $this->crlf);} else {fputs($handle , 'MAIL FROM: <' . $this->from . '>' . $this->crlf);}

kodunu

if ($this->verp) {fputs($handle, 'MAIL FROM: <' . $this->username . '>XVERP' . $this->crlf);} else {fputs($handle , 'MAIL FROM: <' . $this->username . '>' . $this->crlf);}

diye değiştirip deneyelim.