I have set up the necessary Models and the web interface to view them via CakePHP.
I have a script that reads emails from a POP3 box, parses out certain information.
I'd like to use the CakePHP models I have to find existing/create new records, based on information that my email script is parsing out, and save them... essentially using the convenience of CakePHP models, but via cron or php on the shell, rather than from a web-accessible controller.
Is this somewhat easy to accomplish? How can I do that?