<small id='bwmwy'></small><noframes id='bwmwy'>

      <i id='bwmwy'><tr id='bwmwy'><dt id='bwmwy'><q id='bwmwy'><span id='bwmwy'><b id='bwmwy'><form id='bwmwy'><ins id='bwmwy'></ins><ul id='bwmwy'></ul><sub id='bwmwy'></sub></form><legend id='bwmwy'></legend><bdo id='bwmwy'><pre id='bwmwy'><center id='bwmwy'></center></pre></bdo></b><th id='bwmwy'></th></span></q></dt></tr></i><div id='bwmwy'><tfoot id='bwmwy'></tfoot><dl id='bwmwy'><fieldset id='bwmwy'></fieldset></dl></div>

      <legend id='bwmwy'><style id='bwmwy'><dir id='bwmwy'><q id='bwmwy'></q></dir></style></legend>
      • <bdo id='bwmwy'></bdo><ul id='bwmwy'></ul>

      1. <tfoot id='bwmwy'></tfoot>

        关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题

        Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

        <small id='2792t'></small><noframes id='2792t'>

              <tbody id='2792t'></tbody>
            <i id='2792t'><tr id='2792t'><dt id='2792t'><q id='2792t'><span id='2792t'><b id='2792t'><form id='2792t'><ins id='2792t'></ins><ul id='2792t'></ul><sub id='2792t'></sub></form><legend id='2792t'></legend><bdo id='2792t'><pre id='2792t'><center id='2792t'></center></pre></bdo></b><th id='2792t'></th></span></q></dt></tr></i><div id='2792t'><tfoot id='2792t'></tfoot><dl id='2792t'><fieldset id='2792t'></fieldset></dl></div>

            <legend id='2792t'><style id='2792t'><dir id='2792t'><q id='2792t'></q></dir></style></legend>
            • <tfoot id='2792t'></tfoot>
              • <bdo id='2792t'></bdo><ul id='2792t'></ul>
                • 本文介绍了关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我已经研究了 3 周来研究如何使用 PHPMailer 为 GoDaddy 配置 SMTP,但没有一个有效.尝试联系 GoDaddy 支持,但他们尚未回复.而且我还没有看到任何关于如何在他们的服务器上设置 SMTP 的文档.

                  I've been researching for 3 weeks now on how to configure SMTP using PHPMailer for GoDaddy but none of it works. Tried contacting the GoDaddy support but they haven't replied yet. And I haven't seen any documentation on how to setup SMTP on their server.

                  我已经多次更改主机,测试了它们,但都没有成功发送电子邮件.我超越了错误(使用 PHPMailer 调试),但是当我检查电子邮件时,我看不到任何收到的消息.

                  I've been changing the Host many times, tested them, but none of it were successful in sending the email. I surpassed the error (using PHPMailer debug) but when I checked the email, I couldn't see any messages being received.

                  这些是我尝试过的主机:

                  These are the hosts I've tried:

                  $mail->Host = "smtp.office365.com";
                  $mail->Host = "smtpout.secureserver.net";
                  $mail->Host = "relay-hosting.secureserver.net";
                  $mail->Host = "localhost";
                  

                  另外,我已经尝试了PHPMailer故障排除中的设置,但它不起作用.

                  Also, I've tried the settings in PHPMailer troubleshooting, but it won't work.

                  $mail->isSMTP();
                  $mail->Host = 'relay-hosting.secureserver.net';
                  $mail->Port = 25;
                  $mail->SMTPAuth = false;
                  $mail->SMTPSecure = false;
                  

                  我目前的设置是:

                  $mail->isSMTP();
                  $mail->Host = "smtpout.secureserver.net";
                  $mail->Port = 80;
                  $mail->SMTPAuth = true;
                  
                  //Enable SMTP debugging. 
                  $mail->SMTPDebug = 4;
                  
                  //Provide username and password     
                  $mail->Username = "email@email.com";                 
                  $mail->Password = "password"; 
                  
                  $mail->From = "email@email.com";
                  $mail->FromName = "From Name";
                  
                  $mail->addAddress("email@email.com", "Name");
                  

                  使用的电子邮件是在 GoDaddy 中创建的电子邮件,即 Office 365 Email Essentials.在电子邮件和Office(不是 Workspace 电子邮件或来自 cPanel).我正在使用带有 cPanel 包的经济型 Linux 主机.

                  The email being used is the email created in GoDaddy which is Office 365 Email Essentials. Under Email & Office (Not Workspace Email or from cPanel). I'm using Economy Linux Hosting with cPanel package.

                  我是 GoDaddy 的新手,所以这个问题对我来说是新的.在 InMotion 等一些托管服务提供商中,我从未遇到过这个问题.

                  I'm new to GoDaddy so this problem is new to me. In some hosting providers like InMotion, I've never encountered this problem.

                  推荐答案

                  Godaddy 对服务器中继设置做了一些更改.我们不再需要单独提及中继服务器设置.以下更改将适用于 PHPMailer.

                  Godaddy made few changes the server relay setting. we don't need to separately mention the relay server settings anymore. following changes will works fine with PHPMailer.

                  $mail = new PHPMailer;

                  $mail->SMTPDebug = 0;

                  $mail->isSMTP();

                  $mail->Host = 'localhost';

                  $mail->端口 = 25;

                  $mail->ssl = false;

                  $mail->authentication = false;

                  这篇关于关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  smtp gmail server php mailer not working(smtp gmail服务器php邮件程序不工作)
                  Email goes in spam when I send it via others SMTP server(当我通过其他 SMTP 服务器发送电子邮件时,电子邮件进入垃圾邮件)
                  Unable to connect to SMTP server(无法连接到 SMTP 服务器)
                • <small id='sXwKM'></small><noframes id='sXwKM'>

                  1. <i id='sXwKM'><tr id='sXwKM'><dt id='sXwKM'><q id='sXwKM'><span id='sXwKM'><b id='sXwKM'><form id='sXwKM'><ins id='sXwKM'></ins><ul id='sXwKM'></ul><sub id='sXwKM'></sub></form><legend id='sXwKM'></legend><bdo id='sXwKM'><pre id='sXwKM'><center id='sXwKM'></center></pre></bdo></b><th id='sXwKM'></th></span></q></dt></tr></i><div id='sXwKM'><tfoot id='sXwKM'></tfoot><dl id='sXwKM'><fieldset id='sXwKM'></fieldset></dl></div>
                    <tfoot id='sXwKM'></tfoot>

                        <bdo id='sXwKM'></bdo><ul id='sXwKM'></ul>
                          <legend id='sXwKM'><style id='sXwKM'><dir id='sXwKM'><q id='sXwKM'></q></dir></style></legend>
                            <tbody id='sXwKM'></tbody>