Godaddy smtp 数据(codeigniter)
godaddy smtp data (codeigniter)
我一直在尝试让我的电子邮件配置与 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.
再次致电 godaddy 并获得不同的技术支持人员后。我们设法解决了这个问题。
这是一个NONE安全(不使用 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;
我一直在尝试让我的电子邮件配置与 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.
再次致电 godaddy 并获得不同的技术支持人员后。我们设法解决了这个问题。
这是一个NONE安全(不使用 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;