>> /dev/null discards stdout; and 2>&1 redirects error output to stdout, which in turn discards it. So the only way to know whether the cron job is working is whether the mail is being sent.
I’d create a new job with the same command to run every 10 minutes (*/10 * * * *) to test it. If the mail is sent, it’s working.