PHP Versiyon 5.4.45
Kodlar :
require_once('class.phpmailer.php');
require_once('PHPMailerAutoload.php');
$phpmailer = new PHPMailer;
$phpmailer->isSMTP();
$phpmailer->Host = 'mail.xxx.com'; // duzenlenecek
$phpmailer->SMTPAuth = true;
$phpmailer->Username = 'xxx@xxx.com'; // duzenlenecek
$phpmailer->Password = 'xxxxx'; // duzenlenecek
$phpmailer->SMTPSecure = 'tls'; // duzenlenecek
$phpmailer->Port = '587'; // duzenlenecek
$phpmailer->From = 'xxx@xxx.com'; // duzenlenecek
$phpmailer->FromName = 'xxx'; // duzenlenecek
$phpmailer->AddReplyTo($mail_adres, 'xxx');
$phpmailer->addAddress($mail_adres, $username); // duzenlenecek
$phpmailer->isHTML(true);
$phpmailer->Subject = 'xxx';
$phpmailer->Body = 'Sayın $cari_isim ;Servisimize bıraktığınız $urun_marka $urun_model ürününüz ile ilgili son durum : $servis_bilgiBizi tercih ettiğiniz için teşekkür ederiz.
$firma_unvan
$firma_adres
$firma_tel';
$phpmailer->CharSet = 'UTF-8';
if(!$phpmailer->send()) {
echo 'Mail gonderilemedi. Hata: ' . $phpmailer->ErrorInfo;
exit;
}
yardımcı olacak arkadaşlara şimdiden teşekkürler.