免费发短信(仅限美国海内)How to Send Free Text Messages Using PHP

WBOY
풀어 주다: 2016-06-13 12:02:50
원래의
1946명이 탐색했습니다.

免费发短信(仅限美国国内)How to Send Free Text Messages Using PHP

测试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 should be able to do on my own. So I started thinking about how the messaging systems worked and realized that we could just use the carriers built in email addresses for MMS messaging.? This is a great, cost effective 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 would send to would be the 10 digit mobile number followed by the carriers specific email address. (A list is included 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]
Centennial 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]");
로그인 후 복사

?

?

原文:http://www.stemkoski.com/sending-text-messages-using-php-for-free/

更多carrier:

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

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

?

测试DEMO

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿