1 回答
TA贡献1772条经验 获得超6个赞
再次致电 godaddy 并获得不同的技术支持人员后。我们设法解决了这个问题。
这是一个不安全(不使用 SSL)的解决方案
the smtp_host = mail.domain.app
the smtp_port = 587
the smtp_crypto should be removed (so no ssl)
所以供参考
$config['email_address'] = 'no-reply@domain.com';
$config['owner'] = 'name';
$config['email_owner'] = 'no-reply@domain.com';
$config['charset'] = 'utf-8';
$config['mailtype'] = 'html';
$config['protocol'] = 'smtp';
$config['smtp_host'] = 'domain.com';
// $config['smtp_crypto'] = 'ssl';
$config['smtp_port'] = '587'; // 465, 25, 587
$config['smtp_timeout'] = '7';
$config['smtp_user'] = 'no-reply@domain.com';
$config['smtp_pass'] = 'xxxxx';
$config['validation'] = TRUE;
- 1 回答
- 0 关注
- 123 浏览
添加回答
举报