Berikut step-stepnya:
- Download source codenya disini
- Unzip/Extract foldernya ke root atau direktori web anda
- Buat file index.php
- Copas (di copy trus paste ke file index.php) source code dibawah dan ganti text berwarna merah sesuai data anda.
$mail = new PHPMailer();
//$mail->IsSMTP(); // telling the class to use SMTP
// $mail->Host = "localhost"; // SMTP server
//IsSMTP(); // send via SMTP
$mail->Host = "ssl://smtp.gmail.com"; // SMTP server Gmail
$mail->Mailer = "smtp";
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = “username@gmail.com”; //
$mail->Password = “password”; // SMTP password
$webmaster_email = “username@domain.com”; //Reply to this email ID
$email=”username@domain.com”; // Recipients email ID
$name=”name”; // Recipient’s name
$mail->From = $webmaster_email;
$mail->FromName = “Webmaster”;
$mail->AddAddress($email,$name);
$mail->AddReplyTo($webmaster_email,”Webmaster”);
$mail->WordWrap = 50; // set word wrap
$mail->AddAttachment(“/var/tmp/file.tar.gz”); // attachment
$mail->AddAttachment(“/tmp/image.jpg”, “new.jpg”); // attachment
$mail->IsHTML(true); // send as HTML
$mail->Subject = “This is the subject”;
$mail->Body = “Hi,This is the HTML BODY “; //HTML Body
$mail->AltBody = “This is the body when user views in plain text format”; //Text Body
if(!$mail->Send())
{
echo “Mailer Error: ” . $mail->ErrorInfo;
}
else
{
echo “Message has been sent”;
}
?>
- Buka file class.smtp.php
- Paste source code berikut pada line 104 (#connect to the smtp server)
$host = “ssl://smtp.gmail.com”;
$port = 465; - Save semua perubahan lalu running di browser Anda. Selamat mencoba
Wah, ketemu juga akhirnya. makasih mas, izin muat di blog saya. cek http://aksauncp.blogspot.com/2012/12/mengirim-email-dengan-menggunakan-smtp.html
ReplyDeletemakasih tutor nya bos, mau coba dulu nich..
ReplyDeletehttp://ji-software.com
Fatal error: Class 'SMTP' not found in C:\xampp\htdocs\coba\PHPMailer\class.phpmailer.php on line 1209
ReplyDeletegimana solusinya?
Fatal error: Class 'SMTP' not found in C:\xampp\htdocs\platinum\PHPMailer\class.phpmailer.php on line 1443
ReplyDeletesolusinya ada yang tau?
forbidden.! klo mau download filenya gan..
ReplyDelete