Ek Olarak:
error_reporting(E_ALL ^ E_NOTICE);
if ( $_POST ){
$adsoyad = htmlspecialchars(trim($_POST['adsoyad']));
$tcno = htmlspecialchars(trim($_POST['tcno']));
$telefon = htmlspecialchars(trim($_POST['telefon']));
$eposta = htmlspecialchars(trim($_POST['eposta']));
$adres = htmlspecialchars(trim($_POST['adres']));
include 'class.phpmailer.php';
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->Username = 'gmail mail adresi ';
$mail->Password = 'gmail mail şifresi';
$mail->SetFrom($mail->Username, 'başlık');
$mail->AddAddress("gönderilecek mil adresi", $adsoyad);
$mail->CharSet = 'UTF-8';
$mail->Subject = 'deneemee maildir';
$content = '
'.'Ad Soyad:'.$adsoyad.'
'.'Tc no:'.$tcno.'
'.'Telefon:'.$telefon.'
'.'E-Posta:'.$eposta.'
'.'Adres:'.$adres.'
';
'.'Tc no:'.$tcno.'
'.'Telefon:'.$telefon.'
'.'E-Posta:'.$eposta.'
'.'Adres:'.$adres.'
$mail->MsgHTML($content);
if($mail->Send()) {
// e-posta başarılı ile gönderildi
echo '
E-posta başarıyla gönderildi, lütfen kontrol edin.
';
header("refresh:5; url= http://www.google.com ");
} else {
// bir sorun var, sorunu ekrana bastıralım
echo '
'.$mail->ErrorInfo.'
';
}
}
?>
Ek Olarak: sanırım konu yanlış yerde kusura bakmayın arkadaşlar acil yardımcı olabilecek varmıdır