This is handy for a script or two of mine also...
http://www.fincher.org/tips/General/Unix.shtml-----------------------------
0 is stdin; 1 is stdout; 2 is stderr
redirect std err to file
command 2>file
direct the output from command to stderr
commamd >& 2
direct std output and std err to foo or /dev/null
command >foo 2>>foo
same as above stderr rerouted to whatever filedes 1 is.
command >foo 2>&1
-----------------------------
I'm just as new (probably newer) to this as you, but from that I think this is what you'd want:
10 0 * * * root /somedir/somescript 1> /var/log/messages 2> mail -s Panic -u root