If not, and for public consumption, the contents of that email:
Use this in your templates where you want to display the last update to your blog:
<?php
$last = $wpdb->get_var("SELECT post_modified FROM $wpdb->posts order by post_modified DESC LIMIT 1");
echo "Last update: " . mysql2date(get_settings('date_format'), $last);
?>
Description of code:
$last receives the modified date for the last post or Page on your blog. The echo line displays the modified date, filtered through the WP mysql2date() function (passing it the default date format on your blog).
If you want to make sure to select only Page updates, use this for your $last code:
$last = $wpdb->get_var("SELECT post_modified FROM $wpdb->posts WHERE post_status = 'static' order by post_modified DESC LIMIT 1");
You can customize the date/time format by using PHP date format strings:
echo echo "Last update: " . mysql2date('F j, Y @ g:i a', $last);
This will output:
Last update: March 6, 2006 @ 11:09 pm
Also see:
http://codex.wordpress.org/Formatting_Date_and_Time