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'] = '[email protected]';
$config['owner'] = 'name';
$config['email_owner'] = '[email protected]';
$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'] = '[email protected]';
$config['smtp_pass'] = 'xxxxx';
$config['validation'] = TRUE;
- 1 回答
- 0 關注
- 151 瀏覽
添加回答
舉報