Alıntı
Fatal error: Class 'SMTP' not found in /home/kayseri6/public_html/inc/class.phpmailer.php on line 1303
Phpmailler clasında bir problem olabilir mi güncel bitane daha indirip denermisin.
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = "smtp.gmail.com";
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username = "email@gmail.com";
$mail->Password = "password";
$mail->Subject = "Konu";
$mail->Body = "İçerik";
$mail->AddAddress("gonderilecek mail");
if(!$mail->Send())
{
echo "Gönderim Hatası: " . $mail->ErrorInfo;
}
else
{
echo "Gönderildi";
}Bu şekilde bi denermisin.