|
Whenever magento needs to send an email i get the following error:
Warning: mail() [function.mail]: SMTP server response: 550
You must enable SMTP Authentication in C:\Program Files\xampp\htdocs\ijersey\lib\Zend\Mail\Transport\Sendmail.php on line 91
I am using windows, and have configured my php.ini file to accomodate smpt.
This is the function on and around line 91:
public function _sendMail() { if ($this->parameters === null) { $result = mail( $this->recipients, $this->_mail->getSubject(), $this->body, $this->header); } else { $result = mail( $this->recipients, $this->_mail->getSubject(), $this->body, $this->header, $this->parameters); } if (!$result) { /** * @see Zend_Mail_Transport_Exception */ require_once 'Zend/Mail/Transport/Exception.php'; throw new Zend_Mail_Transport_Exception('Unable to send mail'); } }
Any ideas on where to throw in some authentication?
|