Well, yes I realize I would type it in with my keyboard :)
So let's say the tracking url is (it's not, this is just an example) this:
http://fedextracking.com/?trackingurl=[tracking # here]
So I could just add this php code (which is the code that's in the email template )
<?php echo((isset($_POST["OrderTrackingNumber"]))?$_POST["OrderTrackingNumber"]:"") ?>
So the url that I would manually add to the template is:
<a href="http://fedextracking.com/?trackingurl=<?php echo((isset($_POST["OrderTrackingNumber"]))?$_POST["OrderTrackingNumber"]:"") ?>">Click here for tracking, or whatever</a>
Is that right? (theoretically)
Thanks!

