Well, it's a variable from a dropdown selection in a form. I got it to work...but I don't know if it's the right way, the wrong way, or the sideway. I'm now using php v4.3
I posted from a form page to a php page that set the variable:
session_start();
session_id();
session_register("receiver");
...then went thru a few more pages with session_start(); in them...and ended up in the email php page with this in it:
session_start();
session_destroy();
mail($receiver,$subject,$message,$headers);
and it put my variable into the $receiver slot and I received an email....but is this actually the correct method now-a-days? Thanks