Şimdi,
Githubtan PHPMailer'ı indirdim.
"src" klasörü altında bulunan "PHPMailer.php" dosyasını sayfaya include ettim.
$eposta = new PHPMailer; ya da $eposta = new PHPMailer();
yazınca sayfa çalışmıyor.
Sorun ne olabilir ?
PhpMailer Hk |
4 Mesajlar | 626 Okunma |
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
include_once 'Exception.php';
include_once 'PHPMailer.php';
include_once 'SMTP.php';
$mail = new PHPMailer;
try {
$mail->SMTPDebug = 0;
$mail->isSMTP();
$mail->Host = 'smtp adresi';
$mail->SMTPAuth = true;
$mail->Username = 'kullanıcı adı';
$mail->Password = 'şifre';
$mail->SMTPSecure = 'ssl';
$mail->Port = mail_port;
$mail->CharSet = 'UTF-8';
$mail->setFrom('mail adresim');
$mail->addAddress('gönderilecek adres');
$mail->isHTML(true);
$mail->Subject = 'Şifre sıfırla!';
$mail->Body = 'Merhaba
';
$mail->AltBody = 'Merhaba!';
$mail->send();
echo 'true';
} catch (Exception $e) {
echo 'False';
}
try {
$eposta = new PHPMailer();
$eposta-> SMTPDebug = 3;
$eposta -> isSMTP();
$eposta -> Host = "mail.traveltomarmaris.com";
$eposta -> SMTPAuth = true;
$eposta -> Username = "***@traveltomarmaris.com";
$eposta -> Password = "****";
$eposta -> SMTPSecure = "tls";
$eposta -> Port = 587;
$eposta -> From = "***@traveltomarmaris.com";
$eposta -> FromName = "Rezervasyon Bilgileri";// Veri tabanından dil ayarına göre çekilecek7
$eposta -> addAddress(post('e-mail'));
$eposta -> isHTML(true);
$eposta -> Subject = $tur['turBaslik'];
$eposta -> Body = post('date_from') . 'tariihinde rezervasyon yapıldı.';
$eposta -> CharSet = 'UTF-8';
if (!$eposta ->send()) {
echo $eposta->ErrorInfo;
}
} catch (\Exception $e) {
echo $e->getMessage();
}