Ben bir Dedicated Godaddy sunucusundan benim gmail hesabı üzerinden posta göndermek için çalışılıyor. Ben şirketin e-posta sunucusu üzerinden e-posta göndermek için çalıştılar ama Godaddy hiçbir çözüm (grrr) ile noktasını 25 öldürür.
Ben bu including here bir çözüm için yüksek ve düşük arandı ancak herhangi bir e-posta göndermek mümkün oluyorum. Ben her zaman google dan bir 'kimlik doğrulamasının gerekli' hatası alıyorum.
Burada e-posta göndermek için kullandığınız kod:
include("Mail.php");
/* mail setup recipients, subject etc */
$headers["From"] = "xxxxx@gmail.com";
$headers["to"] = "yyyyy@hotmail.com";
$headers["subject"] = "User feedback";
$mailmsg = "Hello, This is a test.";
/* SMTP server name, port, user/passwd */
$smtpinfo["host"] = "ssl://smtp.gmail.com";
$smtpinfo["port"] = 465;
$smtpinfo["auth"] = true;
$smtpinfo["username"] = "xxxxx@gmail.com";
$smtpinfo["password"] = "xxxxxx";
$smtpinfo["debug"] = true;
/* Create the mail object using the Mail::factory method */
// $mail_object =& Mail::factory("smtp", $smtpinfo);
// EDIT -- removed reference
$mail_object = Mail::factory("smtp", $smtpinfo);
/* Ok send mail */
$result = $mail_object->send($recipients, $headers, $mailmsg);
if(PEAR::isError($result))
{
echo "\nerror sending mail: ".PEAR_Error::getCode().' '.PEAR_Error::getMessage();
}
else
echo "\nSuccessfully sent mail.";
İşte armut posta gelen yanıttır:
DEBUG: Recv: 250-mx.google.com at your service, [208.109.190.226]
DEBUG: Recv: 250-SIZE 35651584
DEBUG: Recv: 250-8BITMIME
DEBUG: Recv: 250-AUTH LOGIN PLAIN XOAUTH
DEBUG: Recv: 250 ENHANCEDSTATUSCODES
DEBUG: Send: MAIL FROM:<xxxxx@gmail.com>
DEBUG: Recv: 530-5.5.1 Authentication Required. Learn more at
DEBUG: Recv: 530 5.5.1 http://mail.google.com/support/bin/answer.py?answer=14257 t35sm1037116qco.30
Fatal error: Using $this when not in object context in /usr/share/php/PEAR.php on line 970
Herhangi bir yardım büyük beğeni topluyor.