9
Since this module, especially the sms to me block part was set up for outside the USA, does anybody know what changes I can make to the code to make it work in the USA?
####Send to Me Block
if ($op == "me") {
$sendto = $SMSConfig['myaddress'];
if ($HTTP_COOKIE_VARS['sentmessage'] >= 2) {
$send = "no";
} else {
$num = $HTTP_COOKIE_VARS['sentmessage'] + 1;
cookie("sentmessage", $num, time() + 24*60*60); //set the cookie
$private = true;
}
}
##End Send to me block