Ben çalışmak için php mailler almaya çalışıyorum. Ben bir hata alıyorum ama google herhangi bir bilgi bulamadık.
$mail = new phpmailer;
$mail->IsSMTP(); // set mailer to use SMTP
$mail->SMTPSecure = "ssl";
$mail->Host = "smtp.gmail.com";
$mail->Port = 465;
$mail->From = "from@email.com";
$mail->FromName = "Mailer";
$mail->AddAddress("user@theirsite.com", "User");
//$mail->AddAddress("ellen@site.com"); // name is optional
$mail->AddReplyTo("info@site.com", "Information");
$mail->WordWrap = 50; // set word wrap
//$mail->AddAttachment("c:\\temp\\js-bak.sql"); // add attachments
//$mail->AddAttachment("c:/temp/11-10-00.zip");
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the message body";
$mail->Send(); // send message
Yukarıdaki kod ben kullanıyorum ama ben bunu çalıştırmayı denediğinizde ben benim tarayıcıda şu olsun ne ...
Fatal error: Cannot access empty property in /the/full/path/to/phpmailer.inc.php on line 271
Burada atıfta bulunuyor hattı ...
$header[] = sprintf("Content-Transfer-Encoding: %s\n", $this->$Encoding);
Herkes yardımcı olabilir eğer büyük mutluluk duyacağız! Teşekkürler.