----------------Start-------------
set memo " -> Is on IRC !"
set num xxxxxxxx@sms.ISP.com" ----> Here i think you must set number from your mobile operator
bind join - * join:on_join
proc join:on_join {nick uhost hand chan} {
if {$nick == "ANYNICK"} {
global num memo
exec echo $uhost $memo | mail $num
pushmode $chan +v $nick
}
return 0
}
---------END----------------