strip_tags
Codice PHP:

<?php

$file 
'http://www.miosito.it/contratto.php';

$html file_get_contents($file);

//togliamo i tag html da $html
$html =strip_tags($html);

mail('mia@mail.com''Contratto'$html'From: [email]mail@mittente.it[/email]');

?>