if (sendMail($email, getConfig("subscribesubject:$id"), $subscribemessage,system_messageheaders($email),$envelope,1)) {
sendAdminCopy("Lists subscription","\n".$email . " has subscribed\n\n$history_entry");
addUserHistory($email,$history_subject,$history_entry);
print $thankyoupage;
}
Call that redirect($url) function in this if and erase print $thankyoupage;
Like this:
if (sendMail($email, getConfig("subscribesubject:$id"), $subscribemessage,system_messageheaders($email),$envelope,1)) {
sendAdminCopy("Lists subscription","\n".$email . " has subscribed\n\n$history_entry");
addUserHistory($email,$history_subject,$history_entry);
redirect("mythankyoupage.php");
}