1. 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']);
  2. 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;
    }