Code:
#get process names
proc1=$(ps hc -o cmd -p $1)
proc2=$(ps hc -o cmd -p $2)
#kill 'em
kill $1 $2
#sleep for 2 mins
sleep 120
#check if they're running
( pgrep $proc1 && pgrep $proc2 ) > /dev/null
$? && mail -s "All OK" $users || mail -s "Needs manual restart" $users
Something like the above should work.