• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

need a script that copies files, then emails

ZippyDan

Platinum Member
i need to make a script that copies some files

like

copy c:\share\*.* d:
copy c:\share\*.* f:

and then sends an email saying it was completed. any easy way to do this?
 
hrm, i know there is a freeware program called monidir that you can set up to monitor a directory every X minutes and email you a predefined email when it happens. We use it to monitor when digital dictation is auto-downloaded and ready for transcription. If you want exact times this won't work.
 
The only difficult part of that is getting a command-line mailer.

I've used postie in the past with good success, and at the time it was free. I now see they charge $15 for it.
However, there's anohter command-line mailer called bmail which seems to work as well.

So you code would look something like this:


 
Back
Top