latest Post

opencart tidak mengirim email konfirmasi - Opencart Not sending confirmation email

akhirnya ketemu juga solusi untuk email opencart ini.. setelah nyoba bbrp solusi dr forum" ga ada yang berhasil. untuk test awal nya buka file system/library/mail.php
cari if (!$this->html) { . sebelum baris tsb sisipkan baris berikut untuk test fungsi mail nya berhasil/ ga.
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary , Kelly ' . "\r\n";
$headers .= 'From: Birthday Reminder ' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
# 2nd check if its true or false when calling the mail function
if( mail($email_to, $email_subject, $email_message, $headers)!==true) {
die('Fail to send');
} else { die('Sucess');
}

kalau keluarannya "
Sucess" berarti dah oke tu fungsi mail nya bisa dpake.


About ummi hasya

ummi hasya
Recommended Posts × +

0 comments:

Post a Comment