i did look at your earlier posts and didnt understand what you wanted to do.... for this question you do this
on the final page you do this, assuming the affiliate id is passed as the variable $af_id through a form POST
if(isSet($_POST['$af_id'])){
// send mail to affilitate
mail("b@se.com", "$subject", $message,"From: $addressfrom\nReply-To: $addressfrom");
}else{
//send mail to normal
mail("sales@e.com", "$subject", $message,"From: $addressfrom\nReply-To: $addressfrom");
}
reg
kevin