• 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.

Share Mod reg mail

dgtupltn95

New Member
Mod reg mail

Athor by Tống Hoài Hướng dẫn: + Mở file incfiles/languages/vn/registration.lng và thêm vào cuối cùng:
Code:
error_empty_mail = "Bạn chưa nhập email" email = "Email" your_mail = "Email của bạn" mail_help = "là cần thiết khi bạn quên mật khẩu."
+ Mở file registration.php, tìm:
Code:
$reg_pass = isset($_POST['password']) ? trim($_POST['password']) : '';
Thêm vào dưới nó:
Code:
$reg_mail = isset($_POST['mail']) ? trim($_POST['mail']) : '';
Tìm tiếp:
Code:
if (preg_match('/[^\dA-Za-z]+/', $reg_pass)) $error['password'][] = $lng['error_wrong_symbols'];
Thêm vào dưới nó:
Code:
// Email if (empty($reg_mail)) $error['mail'][] = $lng['error_empty_mail'];
Tìm:
Code:
if (empty($error)) {
Thêm vào dưới nó:
Code:
$to = $reg_mail; $subject = "Thông tin cho thành viên mới"; $message = "Chào $reg_nick, cảm ơn bạn đã tham gia diễn đàn '.$home.' của chúng tôi. Thông tin tài khoản của bạn với mật khẩu là $reg_pass. Ngay bây giờ bạn đã có thể viết bài tại diễn đàn. Cảm ơn bạn."; $from = "tenmail@domain.com"; mail($to,$subject,$message,$from); // End
Tìm:
Code:
`password` = '" . mysql_real_escape_string($pass) . "',
Thêm vào dưới nó:
Code:
`mail` = '$reg_mail',
Tìm:
Code:
'<small>' . $lng_reg['password_help'] . '</small></p>' .
Thêm vào dưới nó:
Code:
'<p><h3>' . $lng_reg['email'] . '</h3>' . (isset($error['mail']) ? '<span class="red"><small>' . implode('<br />', $error['mail']) . '</small></span><br />' : '') . '<input type="text" name="mail" maxlength="50" value="' . htmlspecialchars($reg_mail) . '"' . (isset($error['mail']) ? ' style="background-color: #FFCCCC"' : '') . '/> ' . '<small>' . $lng_reg['mail_help'] . '</small></p>' .
Tìm tiếp:
Code:
 ' . $lng_reg['your_password'] . ': <b>' . $reg_pass . '</b>
Thêm vào sau nó:
Code:
 ' . $lng_reg['your_mail'] . ': <b>' . $reg_mail . '</b>
+ Chú ý: Tìm chỗ // Send mail, change $subject thành tiêu đề thư bạn muốn (Viết không dấu nha), change $message thành nội dung bạn muốn gửi. + Save & Test + Code send mail ổn định với gmail và yêu cầu host bạn phải cho tạo tài khoản email. Đã test trên cp11 và direct.
 

Facebook Comments

New posts New threads New resources

Back
Top