take a look @ the php mail() function
all you need do is build up your input into the BODY for the email
ie.
$body = "Name: " . $name . "\nSome Text: " . $some_text . "\n";
IF data changes in databse (you'd know, you wrote the code to do the MySQL update =)
then do the same in reverse
hth
Bealers