Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

TheNodi's avatar
Level 11

SMS Api

In a project I need to insert SMS notifications for some important events (some products expires). I'm using Laravel notification system to send the related email so sending the text message is quite easy.

I know Laravel support Nexmo out of the box but I don't get how Nexmo pricing works. There's a price per message (€0.0688 in Italy), plus a price per month for the messaging number (100€) which is higher than what my client can pay. I need to send about 40-50 messages per month and they don't need to receive any, right now they are sending them manually with a mobile phone, so it doesn't justify 100€/month for the service.

Am I getting the nexmo price wrong? Are there other services you've used to send sms?

0 likes
9 replies
Inwave's avatar

maybe you can consider twillio? I have had good experiences with them in the past, integration with laravel is quite easy (there are several packages you can use)

Snapey's avatar

I don't know about nexmo, but usually the messaging number is only required if your application needs to receive sms messages

TheNodi's avatar
Level 11

I'll sure give twilio a try! And maybe check more in-depth with nexmo.

sreevardhan.reddy's avatar

You can check Textlocal- https://www.textlocal.com/

They have an Email2SMS feature as well (https://www.textlocal.com/send-email-to-sms-messages). Since you send a relevant email anyway, it can be configured to send the text message easily.

If you need to set up notifications with an API, their APIs are free to use and only charge for the SMS sent.

The prices when compared to twilio and nexmo are very affordable and the quality of service is excellent.

pubiya's avatar

@mohanto Thanks for the suggestion buddy. Awesome package!

Perfectly integrates with Laravel notification system :)

Please or to participate in this conversation.