1. The email field has been disabled. Otherwise it would flood x10hosting's mail server.
2. Assuming it is a PHP script ...
Code:
/usr/bin/php /home/USERNAME/public_html/cronscript.php >> /home/USERNAME/public_html/cronlog.txt 2>&1
where USERNAME is your cPanel username.
cronscript.php is your script. It actually can be anywhere on your site. Many prefer to put it above public_html for security reasons, since if it is in (or in a subdirectory of) public_html it can be run from the Web. Good for testing, bad for security.
The
Code:
>> /home/USERNAME/public_html/cronlog.txt 2>&1
will send any script output or error message to a log file that you can inspect to make sure your cron job is actually being run. With the email notification being disabled, there is no other way of seeing that either the cron daemon has stopped or you made a mistake in your command (mistyped the file name, etc).