2016-10-05 47 views
0

我使用Opencart的和郵件突然停止工作遍佈現場Opencart的電子郵件不工作

擁有goddadys服務器設置更改再次電子郵件?不管我用什麼設置SSL /郵件沒有電子郵件通過 未來沒有什麼工作,登記,輸密碼,以管理員

試圖郵件

mail.mysite.com 
------------------ 
smtp 
ssl://mysite.com 
username 
password 
post 465 

等 沒有什麼工作

Email to required is back on line 61 mail.php

EHLO error is back if you try SSL
2016-10-05 6:54:12 - PHP Notice: Error: EHLO not accepted from server! in /public_html/system/library/mail.php on line 201

without SSL 2016-10-04 16:43:31 - PHP Notice: Error: E-Mail to required! in /public_html/system/library/mail.php on line 60

該網站沒有代碼沒有變動......請幫助

回答

0

固定它....目錄/模型/帳戶/ customer.php

$mail->setTo($this->config->get('config_email')); 
$mail->setFrom($this->config->get('config_email')); 
$mail->setSender(html_entity_decode($this->config->get('config_name'),ENT_QUOTES, 'UTF-8')); 
$mail->setSubject(html_entity_decode($this->language->get('text_new_customer'), ENT_QUOTES, 'UTF-8')); 

,我可能是錯的,但認爲這應該是

$mail->setTo($this->config->get('email'));