Free text message (in the U.S.) HowtoSendFreeTextMessagesUsingPHP

Source: Internet
Author: User
Free text message (only in the United States) HowtoSendFreeTextMessagesUsingPHP test DEMO? IamcurrentlyworkingonalargeprojectandpartoftheprojectistosendsimpletextmessagenoticesusingPHP: How to Send Free Text Messages Using PHP

Test DEMO

?

I am currently working on a large project and part of the project is to send simple text message notices using PHP .? Our client had looked into a number of expensive services to send simple SMS messages but most were cost prohibitive for a start-up venture.

As usual, I was not satisfied paying for something that I shocould be able to do on my own. so I started thinking about how the messaging systems worked and realized that we cocould just use the carriers built in email addresses for MMS messaging .? This is a great, cost valid tive method for sending text messages but it does require that you know the user's carrier for the message to be successfully delivered .? In our case, we are able to ask for that in the web form which we are using to collect the user's phone number but it may not work for every application .?

?

Basically the solution is to send an email using the built in mail function in PHP or any common method of sending email .? The email address you wocould send to wocould be the 10 digit mobile number followed by the carriers specific email address. (A list is wrongly Ded below)

?

Email addresses for the primary U. S. based cell phone carriers:
Alltel = [email protected]
AT&T = [email protected] or [email protected]
Boost Mobile = [email protected]
Centenrix Wireless = [email protected]
Einstein PCS = [email protected]
Nextel = [email protected]
Sprint = [email protected] or [email protected]
T-Mobile = [email protected]
US Cellular = [email protected]
Verizon Wireless = [email protected]
Virgin Mobile = [email protected]

?

The simple PHP code to send the email:

//SUBJECT AND BODY OF EMAIL SHOULD BE LESS THAN 160 CHARACTERS TOTAL$subject = "Text Message Subject";$message = "Text Message Content";  //SENDS TEXT MESSAGE TO 503-869-4212mail("[email protected]",$subject,$message,"From: [email protected]");

?

?

Original article: http://www.stemkoski.com/sending-text-messages-using-php-for-free/

More carrier:

Http://www.sensiblesoftware.com/weblog/2011/02/28/cell-phone-email-addresses/

Http://networking.ringofsaturn.com/Telecommunications/mobile-phone-emails.php

?

Test DEMO

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.