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.
# 2nd check if its true or false when calling the mail function// 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";
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.
0 comments:
Post a Comment