Adhere SMS Currency Exchange Rates Operation Guide

Input File
Create a tab separated file (e.g. input.txt) that contains the numbers to which the SMSes are to be sent. The input file has the following format:
<mobile number> <first name> <last name>
A sample input file is included with the application compressed package.

Operation
Run the jar file with the following command:
java -jar AdhereFXRates.jar <config file> <input file>
This service can be configured to run periodically. we provide an example for running the service once a day on linux. The cron job shown below runs the Currency Exchange Rate Service once a day at 8 am:
crontab -e
This will open your default editor. Append the following line.
0 8 * * * java -jar <full path of jar file> <config file> <input file>
Then save and exit.