- admincp/email.php dosyasını açın
Şu kodu bulun:
print_textarea_row($vbphrase['message_email'], 'message', '', 10, 50);
Altına ekleyin:
print_yes_no_row('Send HTML Email?', 'sendhtml', 0);Şu kodu bulun:
construct_hidden_code('test', $vbulletin->GPC['test']);Altına ekleyin:
construct_hidden_code('sendhtml', $_POST['sendhtml']); - includes/class_mail.php dosyasını açın
Şu kodu bulun
$headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter;
Şununla değiştirin:
if($_POST['sendhtml']) { $headers .= 'Content-Type: text/html' . iif($encoding, "; charset=\"$encoding\"") . $delimiter; }else{ $headers .= 'Content-Type: text/plain' . iif($encoding, "; charset=\"$encoding\"") . $delimiter; }
Kullanıcılarınıza HTML Mailler Gönderin (AdminCp den)
0
●372
- 10-05-2007, 00:59:18Üyeliği durduruldu