我一直在尝试让我的电子邮件配置与 godaddy 一起工作,但未能成功。我正在使用 codeigniter 框架(第 3 版)。我什至联系了他们的支持,但他们没有给我任何帮助,也没有我尝试过。
$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'] = '465'; // 465, 25
$config['smtp_timeout'] = '7';
$config['smtp_user'] = 'no-reply@domain.com';
$config['smtp_pass'] = 'xxxxx';
$config['validation'] = TRUE;
我尝试了他们在网站上提供的 smtpout.europe.secureserver.net(不工作)
这是我从他们的支持团队获得的最后信息。也许有人看到我做错了什么。
Secure SSL /TLS Settings (Recommended)
Username: no-reply@vbuw.app
Password: email account’s password.
Incoming Server: vbuw.app
IMAP Port: 993
POP3 Port: 995
Outgoing Server: vbuw.app
SMTP Port: 465 IMAP, POP3, and SMTP require authentication.
梦里花落0921