I would send a text message as an email. I have made a script like that before, but depending on the company I think they charge a fee per text message for doing it.
This is an example of how I would do it---
PHP Code:
<?php $number_to = "INSERT PHONENUMBER HERE"; $message_subject = "INSERT SUBJECT HERE"; $textmessage = "INSERT TEXT MESSAGE HERE"; if (mail($to, $message_subject, $textmessage)) { echo "Your text message was successfully sent!"; } else { echo "ERROR: There was a problem sending your text message"; } ?>
Hope this helps
-Dillon
|