Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Limitations on SMS messages sent using free email->SMS gateways

Tags:

email

mobile

sms

Many cell (mobile) phone providers in the USA have an email gateway for SMS that allows anyone to send an email that will in turn send a text message. For example, to send a text-message to a user who has a Verizon phone you can send an email to [email protected].

But... how reliable are these gateways, and what limitations are there on the rate of messages that can be sent? At some point do the providers block or throttle service?

Is there anyone out there who is using this type of email/SMS gateway for either a high volume or high reliability application?

like image 502
unintentionally left blank Avatar asked Jul 24 '09 19:07

unintentionally left blank


People also ask

What is the limit of sending SMS?

By default, Android limits apps to only sending 30 SMS messages per 30 minutes (on newer versions of Android starting with 4.1 Jelly Bean), or 100 SMS messages per hour (on older versions of Android).

Why are my SMS messages not sending?

If your Android won't send text messages, the first thing you should do is make sure you have a decent signal — without cell or Wi-Fi connectivity, those texts are going nowhere. A soft reset of an Android can usually fix an issue with outgoing texts, or you can also force a power cycle reset.

What is SMS gateway email?

Email to SMS is software which allows you to turn an email into a text message without any extra effort. Once registered with us, simply write your email and send your message to [email protected].

Can we send SMS using Sendgrid?

Using SMS and Email Together Regardless of who you're trying to contact or where they are, you can now complete the customer engagement package with another robust API: SMS.


1 Answers

The email-to-SMS gateways are generally reliable, given a few conditions (read below). Whether you should use an email-to-SMS gateway or an actual third-party provider depends on the application. If you're going to need a lot of control over the formatting of the messages, collecting replies, etc., then go with a third-party provider. If it's a simple notification you are sending your users, go with email-to-SMS.

If you send too many messages from the same email address, the messages will start backing up. For instance, I sent a message out to about 3,000 AT&T Wireless recipients, and some received the messages up to 3 days later. But typically, sending 10-30/minute won't cause any problems.

I use email-to-SMS gateways for an iPhone application that I built. It sends probably 10 messages per minute to almost all U.S. carriers, and it rarely experiences problems.

There are three main issues that I run into with the email-to-SMS gateway:

  • You don't have control over what the message looks like. Every carrier is different. For some, the recipient will show the email address and others will show the name. Some include the subject line of the email, some don't.
  • You can't control what number the messages come from. Fortunately, the general population typically reads all text messages sent to them regardless of the sender's number.
  • You can't control the replies without a server-side script to manage incoming email. For most carriers, a reply from the phone goes back to the sender's email address.
like image 170
James Skidmore Avatar answered Oct 12 '22 02:10

James Skidmore