Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature currently requires accessing the site using the built-in Safari browser.
Yep.bobcrotch said:I guess i just need to go over the syntax for sendmail.
I understand what cron does, i guess i just don't understand what i need to do to get the results i want. So readup more on sendmail and just have SM send the attachment to the specified email addy via a cron job?
MAILTO=email@site.com
0-59 * * * * cat /var/log/whatever
good point, i forgot completely about that...my codes bloated lol....although I do believe yours will run every minute with the 0-59tim said:should also work. as i recall, cron only sends email if the command called writes to stdout, it intercepts it and emails it to the owner or provided address. the subject is like 'user crontab <command>'Code:MAILTO=email@site.com 0-59 * * * * cat /var/log/whatever