it's not showing up for some reason
I can't find the
if (!$_POST['test'])
{
echo $vbphrase['emailing']." \n";
vbmail($user['email'], $_POST['subject'], $sendmessage, true, $_POST['from']);
}
}
Instead the part i do find in email.php is
if (!$_POST['test'])
{
echo $vbphrase['emailing']." \n";
vbmail($user['email'], $_POST['subject'], $sendmessage, true, $_POST['from']);
}
else
{
echo $vbphrase['test'] . " ... \n";
}
|