Another way you could do it is as follows. Set your Contact Us Options like this:
(click the question mark in the Contact Us Options block in the ACP for details)
Code:
{1} Site Feedback
{example@example.com} Help
Registration
And then instead add this plugin using the sendmessage_docontactus_complete hook:
Code:
$url =& $vbulletin->url;
eval(fetch_email_phrases('contactus', $languageid));
// this one is to the contact person based on the contact us options
vbmail($destemail, $subject, $message, false, $vbulletin->GPC['email'], '', $name);
// this one is a copy to you if you are not the contact person
if ($destemail != $vbulletin->options['webmasteremail'])
{
vbmail($vbulletin->options['webmasteremail'], $subject, $message, false, $vbulletin->GPC['email'], '', $name);
}
eval(print_standard_redirect('redirect_sentfeedback', true, true));