Merhabalar,
yandex mevcut mail sistemini değiştirdi. Bu yüzdende mevcut çalışan sistemler çalışmıyor.

PHPmailler yeni versiyonunu indirdim local bilgisayarımda denediğimde çalıştı ama linux olan sunucuda çalışmadı.

Sizce neden olabilir?

Örnek kodlar:

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.yandex.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'satis@a.gen.tr';                 // SMTP username
$mail->Password = 'aaaaa';                           // SMTP password
$mail->SMTPSecure = 'ssl';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465;                                    // TCP port to connect to

$mail->From = 'satis@a.gen.tr';
$mail->FromName = 'satis@a.gen.tr';
$mail->addAddress('nurettin@a.com', 'a');     // Add a recipient
$mail->addAddress('nurettin@a.com');               // Name is optional
$mail->addReplyTo('satis@a.gen.tr', 'aaa sitesii');
//$mail->addCC('cc@example.com');
//$mail->addBCC('bcc@example.com');
/*
$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
*/
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'konu başlıgı';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}
?>