Posielanie správ na ICQ pomocou zaslania mailu na pager službu.

<?
/*
ICQ Pager
by Eric Hanson
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);
}
 
?>