• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Gửi mail định dạng HTML & với charset UTF-8 bằng PHP

Admin

Well-Known Member
Staff member
Administrator
Dưới đây là 1 hàm đơn giản giúp bạn gửi mail bằng php với charset UTF-8
PHP:
<?php
function mail_utf8($to, $subject = '(Không có tiêu đề)', $message = '', $header = '') {
    $header_ = 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/html; charset=UTF-8' . "\r\n";
    if(mail($to, "=?UTF-8?B?".base64_encode($subject).'?=', $message, $header_ . $header))
        return true;
    return false;
}
?>
VD:
PHP:
<?php
function mail_utf8($to, $subject = '(Không có tiêu đề)', $message = '', $header = '') {
    $header_ = 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/html; charset=UTF-8' . "\r\n";
    if(mail($to, "=?UTF-8?B?".base64_encode($subject).'?=', $message, $header_ . $header))
        return true;
    return false;
}
$guitoi="admin@sinhvienit.net";
$tieude="SinhViênIT.Net";
$noidung="<img src='http://m.sinhvienit.net/02.jpg'><br>Chào mừng bạn đến với SinhViênIT.net";
if(mail_utf8($guitoi,$tieude,$noidung))
    echo "Gửi thành công";
else
    echo "Gửi thất bại";
?>
Demo:
SinhVienIT.NET---untitled(72).jpg

Nguồn 301 Moved Permanently
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top