Yes tried disabling mods no luck...ill try the other thing now.
1 more thing to point out it's only the emails that are sent out on new registration that are like this. Other emails like for PM's or anything are fine
--------------- Added [DATE]1250208441[/DATE] at [TIME]1250208441[/TIME] ---------------
you have that set in vboptions ?
Where do I set that, im looking in Email options but can't see that setting
--------------- Added [DATE]1250208554[/DATE] at [TIME]1250208554[/TIME] ---------------
Code:
$from = $this->fetch_first_line($from);
if (empty($from))
{
global $vbphrase;
if (isset($vbphrase['x_mailer']))
{
$mailfromname = construct_phrase($this->fetch_first_line($vbphrase['x_mailer']), $vbulletin->options['bbtitle']);
}
else
{
$mailfromname = $vbulletin->options['bbtitle'];
}
if ($unicode_decode == true)
{
$mailfromname = utf8_encode($mailfromname);
}
$mailfromname = $this->encode_email_header(unhtmlspecialchars($mailfromname, $unicode_decode), $encoding);
$headers .= "From: $mailfromname <" . $vbulletin->options['webmasteremail'] . '>' . $delimiter;
$headers .= 'Auto-Submitted: auto-generated' . $delimiter;
}
else