dmtelf has asked for the wisdom of the Perl Monks concerning the following question:
The telephone numbers, user names etc are stored in a CSV file in the format of user id, user password, name, email address,notify. I can write code to parse/munge this CSV file easily. If notify = 2 notification is by fax. notify = 1 is by SMS. notify = 0 means no notification at all.
The end user can change how they wish to be notified by email or the Web. All this does is toggle the notify bit for that user if the user knows their own user number and password.
What I'm not so sure about is how to add fax/SMS notification functionality. Does anyone have easily modifiable scripts to enable something like this:
I understand there are fax/sms gateways - how do you find out which are suitable for occasional use (free) or how to set up one yourself inside a company network?&sendfax(user_name,user_number,msg); &sendsms(user_name,user_number,msg);
Any and all advice gratefully received!
Thanks!
dmtelf
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Sending SMSes (in UK) & faxes from Perl
by SuperCruncher (Pilgrim) on Jul 06, 2000 at 21:23 UTC | |
by splinky (Hermit) on Jul 06, 2000 at 21:39 UTC | |
by c-era (Curate) on Jul 06, 2000 at 21:51 UTC | |
|
RE: Sending SMSes (in UK) & faxes from Perl
by ncw (Friar) on Jul 07, 2000 at 00:46 UTC | |
|
Re: Sending SMSes (in UK) & faxes from Perl
by c-era (Curate) on Jul 06, 2000 at 19:46 UTC |