Not sure if it is going to be an executable file. I run a script on our site. I want to start using an option that sends out automated emails. I am waiting for a reply from the script owners as to how to create this file, save it and what type of file to save it as.
Here is the instructions for the file if it helps.
__________________________________________________________
Sending Expiry Emails to Link Owners Who's Links is About to Expire
You will need to execute exp_emails.cgi on a daily basis to be able to send out emails to premium link owner's who's premium links are about to expire. You will normally want to use the Unix CRON program to accomplish this. Many hosting companies provide options to use the Unix CRON program. The Unix CRON program is a scheduler which will execute files on a scheduled basis. (Once a day or any time interval you specify)
Note that you cannot just execute exp_emails.cgi with the Unix CRON program. The reason for this is that exp_emails.cgi needs to be executed in the working directory where it resides.
To make the directory in which exp_emails.cgi resides in, the working directory, you can create a Unix shell script, (Almost like a dos batch (.bat) file) that executes generate.cgi
The shell script should look something like this:
cd /home/yourdomain/www/cgi-bin/admin # Change to exp_emails.cgi working dir
perl exp_emails.cgi # Execute exp_emails.cgi
Note that a shell script is a normal text file that you create and upload to your web host or server. Also note that you will most likely need to assign executable permissions to it (permissions of 755) - Click here to find out how to set file permissions.
___________________________________________________________
I don't work with these types of files so I am trying to learn it step by step.