Jump to content

Is there a way to send sms using php?


arturo322

Recommended Posts

you can use the mail() function to send SMS messages, all you will need to know is the email address that

the cell phone company uses to receive SMS messages, for example sprint uses messaging.sprintpcs.com att uses

txt.att.net

 

so if i was sending a message to a sprint phone i would use this code:

 

<?php

$number = '18001234567'; // enter phone number here
$message = 'enter your message here';

mail($number . '@messaging.sprintpcs.com', 'SMS', $message);

?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.