I have found a bug in the Email class.
The mail server response is : error 354 (end with <CRLF>.<CRLF>)
So at line 1310, i have replaced :
$this->_send_data($this->_header_str . $this->_finalbody);
$this->_send_data('.');
$reply = $this->_get_smtp_data();
by
$this->_send_data($this->_header_str . $this->_finalbody);
$this->_send_data("\r\n.\r\n");
$reply = $this->_get_smtp_data();
