hi,
To send that email you must send the content-type header.vBulletins vbmail(); functions uses plaintext by default(/includes/class_mail.php) so something like this
emailreminder.php find
PHP Code:
$message = stripslashes($message);
add below
PHP Code:
$headers = NULL;
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'Content-Transfer-Encoding: 8bit' . "\r\n";
$headers .= 'To: $username <$toemail>' . "\r\n";
$headers .= 'From: ' . $vbulletin->options['bbtitle'] . ' Reminder Service <' . $vbulletin->options['webmasteremail'] . '>' . "\r\n";
$headers .= 'Reply-to:Webmaster <' . $vbulletin->options['webmasteremail'] . '>' . "\r\n";
$headers .='Content-Transfer-Encoding: 8bit' . "\r\n";
$headers .='X-Priority: 1' . "\r\n";
should do it
if it works feel free to use it if not don't yell at me