SilverBoy,
I have looked at the code a little bit and I think that if you didn't care to have an email sent out then you could delete that code out of the superpm.php file. That is one option. 36000 emails are a lot to send. I don't think sending the PM itself should matter, but I don't deal with that many people. Maybe when UAE comes back he can shed some more light on the situation. I haven't tried this but I think that if you deleted this code out of the file it wouldn't send the email.
PHP Code:
if ($user['emailonpm'] AND $user['usergroupid'] != 3 AND $user['usergroupid'] != 4)
{
$touserinfo = &$user;
eval(fetch_email_phrases('pmreceived', $touserinfo['languageid'], '', 'email'));
vbmail($touserinfo['email'], $emailsubject, $emailmessage);
}
Like I said, I have NOT tried this, and it will likely make it so they don't get an email. I think that it will keep the server from getting hung up (assuming that it gets hung up because of the email).