tags:

views:

44

answers:

1

In this question, Codygman gave an answer that some operators offer a way to send an SMS by sending an email to [email protected]. I am curious about the technical solution behind that. I doubt they have a mailbox for every phone number.

Is there anyone out there who has a clue how they do it?

+5  A: 

Email on the internet operates on the SMTP protocol. Standard MTAs (mail transport agents) will deliver messages to static mailboxes.

All the above solution requires is a custom MTA that instead of delivering to static mailboxes it interprets the username part of the address as a phone number and then pipes the request to an SMS gateway.

Certain mail software might be configurable enough such that this won't even require custom software and can be done with straight configuration.

cletus