Here's a quick and dirty mod to PM the person of your choice when a quiz has been submitted and is ready for review.
In quiz.php
Find:
Code:
header("Location: quiz.php?sub=1");
Add Above (change the word userid in both places to the userid of the member you want notified.):
Code:
$PM = "A quiz has been submitted for review.";
// Send PM
SendPM($PM,"Quiz Submitted for Review",userid,userid);