home *** CD-ROM | disk | FTP | other *** search
- ICQ Pager
-
- This function sends an ICQ page to a specified UIN. It uses Mirabilis' ICQ pager system to send an ICQ message to a specified UIN.
-
-
- <?php
- /*
- ICQ Pager
- by Eric Hanson - eric@cornado.com
- http://www.chatprogram.com/
- July 24, 1999
-
- this is a very trivial script, but i didn't know how to do it initially so
- maybe it will be helpful to others. it uses mirabilis' icq pager system to
- send an ICQ message to a specified UIN. thanks to ross "the boss" at
- activestudios.net. i use this script to alert me if someone enters our
- product support chat.
- */
-
- function ICQpage ($uin, $subject, $message) {
- mail (
- $uin.'@pager.icq.com',
- $subject,
- $message
- );
- }
-
- ?>
-
-