Welcome Guest, Not a member yet? Register   Sign In
Release of SMS Rocket Package for CodeIgniter 4
#1

Hello to all the dear users of the CodeIgniter 4 community!  Smile

I am excited to announce the release of a new package called sms-rocket for CodeIgniter 4. This package is designed to address common challenges in integrating SMS services and offers the following features:

Multi-driver support: Easily switch between different SMS providers.
Caching: Caches SMS responses to reduce redundant requests.
Logging: Logs SMS sending operations for easy debugging and monitoring.
Retry Mechanism: Automatically retries failed message sending attempts.
Multiple Messaging: Supports sending SMS to multiple recipients at once.
User Integration: Automatically detects the phone number field from User models (integration with CodeIgniter Shield).
Data History: Maintains a complete history of SMS transactions in the database for future reference and analysis.
Sensitive Data Handling: Provides functionality to obfuscate sensitive information before storing it in the database to enhance security and privacy.

PHP Code:
/** @var SMSRocketService $smsService */
$smsService service('smsRocket');
$twilio $smsService->driver('twilio')
        ->setSender('+120XXXXXX')
        ->setReceiver('+9809118840000')
        ->setMessage('Ticket #20 has been created.')
        ->send();
if(
$twilio->isOK()){
    echo "Your SMS request has been successfully sent to the Twilio provider. {$twilio->getMessageId()}";    


I invite you to try out this package and share your feedback with me. Together, we can grow the CodeIgniter community and create better projects!
If you wish, you can submit a pull request for the driver related to your favorite provider to enhance the package.

docs : https://www.smsrocket.codeigniter4.ir/
github: https://github.com/datamweb/sms-rocket
Reply
#2

Okay, but I'm not using SMS in the project yet. Maybe I'll test it sometime.
Simple CI 4 project for beginners codeigniter-expenses ( topic )
Reply
#3

@datamweb, thank you.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#4

sure!!! that great!! buddy!!
Codeigniter First, Codeigniter Then You!!
yekrinaDigitals

Reply
#5

if you think about wordpress one of its attractions someone once said to me was its repository of "plugins"; so anything like SMS Rocket , can only expand the use and functionality of CI4 and thus ultimately the attraction for using it .
CMS CI4 A CMS system, runs out of the box written on top of CI4
Arch Book  CodeIgniter4 on Apache(pages 92-114) 
Reply
#6

Thank you all for your feedback.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB