Send sms via php using my phone number

6

I would like to send sms via php, but without using third party api, I wanted to put my own mobile number as sender and it consume my credits for each send, ie just "automate" sending sms. Would that be possible?

    
asked by anonymous 25.11.2016 / 13:53

1 answer

3

To do this you will need access to the SIM, something that PHP does not do, at least not natively.

What I already do some people doing is developing an app for android, for example, and sending the device and thus consume the credits of that chip. But if the volume is too high, the operator blocks the number.

But the right way to do this is to use APIs like link that are approved by Anatel.

    
25.11.2016 / 19:49