SMTP-соединение работает с локальной машины, но не с хостинга GoDaddy. Один и тот же smtp-сервер, используемый

Может ли кто-нибудь объяснить, почему следующее работает отлично, когда оно запускается с моего Mac, но не при загрузке на общий хостинг GoDaddy? Я ничего не меняю при загрузке.

require 'PHPMailer/PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); // Set mailer to use SMTP //$mail->SMTPDebug = 2; // $mail->Host = "smtpout.secureserver.net"; // Specify main and backup server $mail->Port = 25; $mail->SMTPAuth = true; // Enable SMTP authentication $mail->Username = 'systemadmin@example.com'; // SMTP username $mail->Password = 'passwordhere'; // SMTP password //$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted $mail->From = 'systemadmin@example.com'; $mail->FromName = 'Mailer'; $mail->addAddress('someemail@gmail.com', 'Some email'); // Add a recipient $mail->WordWrap = 50; // Set word wrap to 50 characters $mail->isHTML(true); // Set email format to HTML $mail->Subject = 'Request for a quote'; $messageBody = "A quote was requested from example.com<br>Name: %s<br>Phone number: %s<br>Email address: %s<br>Message: %s"; $mail->Body = sprintf($messageBody, $_POST["name"], $_POST["phoneNumber"], $_POST["emailAddress"], $_POST["message"]); $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; if(!$mail->send()) { echo '<h3>Your message has not been sent due to a website error. Please call us at xxx.</h3>'; echo 'Mailer Error: ' . $mail->ErrorInfo; exit; } 

При запуске с моей локальной машины я получаю сообщение электронной почты в gmail, но на серверах GoDaddy я получаю сообщение об Mailer Error: SMTP connect() failed.

Обновить

После, раскомментируя $mail->SMTPDebug = 2 , это подробная ошибка. Я не знаю, почему я получаю Incorrect authentication data при запуске с сервера GoDaddy.

 2014-01-13 17:47:35 SERVER -> CLIENT: 220-p3plcpnl0123.prod.phx3.secureserver.net ESMTP Exim 4.82 #2 Mon, 13 Jan 2014 10:47:35 -0700 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. 2014-01-13 17:47:35 CLIENT -> SERVER: EHLO example.com 2014-01-13 17:47:35 SERVER -> CLIENT: 250-p3plcpnl0123.prod.phx3.secureserver.net Hello p3plcpnl0123.prod.phx3.secureserver.net [184.168.200.80] 250-SIZE 52428800 250-8BITMIME 250-PIPELINING 250-AUTH PLAIN LOGIN 250-STARTTLS 250 HELP 2014-01-13 17:47:35 CLIENT -> SERVER: AUTH LOGIN 2014-01-13 17:47:35 SERVER -> CLIENT: 334 <random-chars-here> 2014-01-13 17:47:35 CLIENT -> SERVER: <random-chars-here-lots-of-them> 2014-01-13 17:47:35 SERVER -> CLIENT: 334 <other-random-chars> 2014-01-13 17:47:35 CLIENT -> SERVER: <more-random-chars> 2014-01-13 17:47:37 SERVER -> CLIENT: 535 Incorrect authentication data 2014-01-13 17:47:37 SMTP ERROR: Password command failed: 535 Incorrect authentication data 2014-01-13 17:47:37 CLIENT -> SERVER: QUIT 2014-01-13 17:47:37 SERVER -> CLIENT: 221 p3plcpnl0123.prod.phx3.secureserver.net closing connection SMTP connect() failed.