Hướng dấn gởi mail bằng phpmailler

Hướng dẫn gởi mail bằng phpmailler, không dùng hàm mail()

Đầu tiên, tải thư viện này về ( ở cuối bài) trong đó có 2 file class.phpmailler.php và class.smtp.php

Và làm theo các bước sau
[cc lang=”php”]
require_once APPPATH . ‘libraries/phpmailer/class.phpmailer.php’;
require_once APPPATH . ‘libraries/phpmailer/class.smtp.php’;
$mail_to = ‘mailnguoinhan’;
$mail = new PHPMailer();
$mail->CharSet=”utf-8″; // bảng mã unicode
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = “smtp.gmail.com“; // specify main and backup server
$mail->Port = 465; // set the port to use
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->SMTPSecure = ‘ssl‘;
$mail->Username = “mailcuaban@gmail.com”; // your SMTP username or your gmail username
$mail->Password = “8882200”; // your SMTP password or your gmail password
$from = “mailcuaban@gmail.com”; // Reply to this email
$to= $mail_to; // Recipients email ID
$name=”Quocbb.com”; // Recipient ‘s name
$mail->From = $from;
$mail->FromName = “Chia sẻ kiến thức”; // Name to indicate where the email came from when the recepient received
$mail->AddAddress($to,$name);
$mail->AddReplyTo($from,”Chia sẻ kiến thức”);
$mail->WordWrap = 50; // set word wrap
$mail->IsHTML(true); // send as HTML
$mail->Subject = “Test mail tại quocbb.com”;
$mail->Body = $html;
$mail->AltBody = ” Bạn đang test mail tại quocbb.com”; //Text Body
//$mail->SMTPDebug = 2;
if(!$mail->Send())
{
echo “<h1>Loi khi goi mail: ” . $mail->ErrorInfo . ‘</h1>’;
}
else
{
echo “<h1>Thành công  </h1>”;
}
[/cc]
File Example  http://quocbb.com/tools/testgmail.rar

Leave a Reply

Your email address will not be published. Required fields are marked *