I'm looking into sending MMS Messages (not just SMS) from a server.

Is it absolutely necessary to use an MMS Gateway? If so, why?

Is the "roll your own" concept ridiculous in this case? If so, why?

Can anybody help me get my foot in the door by providing a "big picture" understanding of how to accomplish sending an MMS from PHP, or any other Server-Side language for that matter?

Thanks in advance.

link|improve this question

Asked a similar question regarding Canadian providers: stackoverflow.com/questions/922356/… – barfoon Nov 11 '10 at 15:05
feedback

2 Answers

up vote 1 down vote accepted

Some providers provide their own gateways that you can use for free. However, you do have to know your target's provider - something that a paid for SMS gateway would take care of for you.

List of gateways maintained by some providers: http://en.wikipedia.org/wiki/List_of_SMS_gateways. Depending on where you are, you could get pretty good coverage just with this list.

Regarding the actual process of sending a message, treat it like you would sending an email. For example sending a text message to a T-Mobile customer is as simple as sending a message to the address: number@sms.t-mobile.at.

link|improve this answer
How can I get the server to be aware of incoming messages? In other words, what is the opposite of this process - how can I turn INCOMING messages into emails and forward them to the server? – Joshua Nov 11 '10 at 1:07
Heh, that's where they get you. Your choices are limited, you either pay for an SMS service, and this is by far the easiest method. Your other choice is using AT commands to get messages sent to a phone (your phone!) as described here: developershome.com/sms/howToReceiveSMSUsingPC.asp. If you need to send and receive a fair number of text messages then you should go for a paid SMS gateway - it will make your life much easier. If all you're doing is pinging your own applications and messaging yourself when they go down, then it's not worth the money. – Radu Nov 11 '10 at 1:21
Which SMS Gateway would you personally recommend? – Joshua Nov 11 '10 at 1:32
I can't recommend any since I haven't needed to use one but I do know that these guys are popular: clickatell.com/products/sms_gateway.php. Here's a nice selection of related questions that might be useful: stackoverflow.com/search?tab=votes&q=%22sms%20gateway%22. – Radu Nov 11 '10 at 1:40
feedback

OpenMarket/MXTelecom provide a SMS/MMS gateway via a SMS PHP SDK. You would need to develop the MMS Wrapper but shouldn't be too hard as they have a great integration guide that explain all the steps needed to send MMS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.