Use of any code provided by Harmonic Design or HDPlugins.com is at your own risk. It is ALWAYS recommended to backup your site or files before modifying any code on your site. Copy Code
/* Change sendTo based on QuizID */
function hdq_srp_change_sendto_based_on_quizID($sendTo, $result_id)
{
// get the quiz id
$quizId = intval(get_post_meta($result_id, "hdq_srp_quiz_id", true));
// UPDATE THIS LIST with pairs of quiz ids and emails
$data = array();
$data[3] = array("[email protected]");
$data[4] = array("[email protected]", "another@domain"); // example sending to multiple addresses
$data[5] = array("[email protected]");
if ($data[$quizId]) {
return $data[$quizId];
}
return $sendTo;
}
add_filter("hdq_srp_sendto", "hdq_srp_change_sendto_based_on_quizID", 10, 2);