Ralf,
> > Please notice: For sending via the SMTP-Server please activate the
> > option "SMTP-Authentication" (not SPA!). Alternatively you can
> > use Port 587 regarding to RRFC 2476.
>
> Can you help?
>
Need some more information to understand what is going on under the
hood. Please open /path-to-eventum/include/pear/Net/SMTP.php on line
362:
foreach ($this->_arguments as $argument) {
$verb = strtok($argument, ' ');
$arguments = substr($argument, strlen($verb) + 1,
strlen($argument) - strlen($verb) - 1);
$this->_esmtp[$verb] = $arguments;
}
And append the following line to that:
var_dump($this->_arguments);
And send me the output. Apparently the PEAR::SMTP package is not being
able to talk to your server correctly, and I need the actual response
from the server to understand why.
--Joao