FaTe adlı üyeden alıntı: mesajı görüntüle
hepsini while döngüsü içine almanıza gerek yok

$message ='
	Merhaba, <b>'.$makale.'</b>  konusunda  <b>'.$kelime.'</b>
	
	<b>'.$mesaj.'</b>
	
	
	';	


require("class.phpmailer.php");
require("class.smtp.php");


$ado = "İSİM";

$mail = new PHPMailer();

$mail->IsSMTP();                                   // send via SMTP
$mail->Host     = 'mail.site.com'; // SMTP servers
$mail->SMTPAuth = true;     // turn on SMTP authentication
$mail->Username = 'info@site.com';  // SMTP username
$mail->Password = 'site'; // SMTP password 
$mail->From     = 'info@site.com'; // smtp kullanıcı adınız ile aynı olmalı
$mail->FromName = $ado;

$lae = mysql_query("SELECT * FROM kullanicilar WHERE yetki='1' ORDER BY songiris ASC LIMIT 5");
while($rowk= mysql_fetch_assoc($lae))
{
    $mail->AddAddress($rowk['eposta']);
}
$mail->Subject  =  'Yeni İstek Bildirimi';
$mail->Body     =  $message;
$mail->CharSet = 'UTF-8';
$mail->ContentType = 'text/html';
			if($mail->Send()) {
    echo 'Mail gönderildi!';
} else {
    echo 'Mail gönderilirken bir hata oluştu: ' . $mail->ErrorInfo;
}
While döngüsünde hata veriyor hocam