phpusr that is a lot clearer 😛 If Herve's suggestion doesn't work (haven't used it myself), then the best way to do it is by a url variable. So, on each page where you want to mail it do:
<a href="forms/mail.php?page=<?php print(urlencode($PHP_SELF)); ?>">Mail This Page</a>
<?php
// on you mail.php
$sourcepage = $_GET['page'];
?>
That should do what you want now 😛