Hi There,

We're doing some work with PHP and need to send out text/sms messages (outgoing only). We're located in Canada. Can anyone give me some pointers where to start? I presume we'll need some kind of gateway company with an API to get the ball rolling. Any recommendations?

Thanks,

-dr

    most cell carriers allow txt's to be sent via email using the cell number followed by a custom domain setup by the carrier. for example:

    Verizon: 1234567890@vtext.com
    AT&T: 1234567890@txt.att.net

    this way you could use PHP's mail functions to send txt's

      The problem is that we'll have people registering online and we won't know who their provider is. So we'll need some way to send the messages without this info.

        dico;10912850 wrote:

        ... and we won't know who their provider is.

        you could ask them. have their cell carrier be one of the required fields when registering.

          We could, but this wouldn't be practical in our case.

            dico wrote:

            The problem is that we'll have people registering online and we won't know who their provider is.

            You're the one sending the message, it's your provider you'll be sending them through.

            If I want to send someone a text message I don't need to know who their provider is, I just need their phone number.

              Write a Reply...