Download the PHP package tarfin-labs/netgsm without Composer
On this page you can find all versions of the php package tarfin-labs/netgsm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tarfin-labs/netgsm
More information about tarfin-labs/netgsm
Files in tarfin-labs/netgsm
Package netgsm
Short Description netgsm channel for laravel
License MIT
Homepage https://github.com/tarfin-labs/netgsm
Informations about the package netgsm
Introduction
With this package, you can send easily Netgsm notifications with Laravel ^8.0
.
This package also provides some simple reporting.
This package requires PHP
8.2
or higher and Laravel11.0
or higher.
For older versions of Laravel, please use version^4.0.0
of this package!
Contents
- Installation
- Setting up the Netgsm service
- Usage
- Service Methods
- SMS Sending
- Available SMS Interfaces
- Reporting
- Available Reporting Interfaces
- Account Balance
- Remaining Balance
- Remaining Package Credits
- IYS Integration
- Add Address
- Search Address
- Testing
- Security
- Contributing
- Credits
- License
Installation
You can install the package via composer:
Next, you should publish the Laravel config migration file using the vendor:publish Artisan command.
Setting up the Netgsm service
Add your Netgsm User Code, Default header (name or number of sender), and secret (password) to your .env
:
NETGSM_USERCODE and NETGSM_SECRET is authentication information of netgsm. NETGSM_HEADER is default header (name or number of sender) of sms messages.
Usage
Service Methods
Sends an SMS message to the phone number on the message object passed as a parameter. If the message is sent successfully, a job id returned from the netgsm API service is returned.
Returns a collection based on the report object passed as a parameter.
Sms Sending with Using Notification Channel
In order to let your Notification know which phone number you are sending to, add the routeNotificationForNetgsm method to your Notifiable model e.g your User Model
You can use the channel in your via()
method inside the notification:
You can add recipients (string or array)
You can also set the sending date range of the message. (It does not work on OTP messages.)
You can set authorized data parameter (It does not work on OTP messages.)
If this parameter passes as true, only SMS will be sent to phone numbers that have data permission.
Additionally, you can change the header.
You can use NetGsmOtpMessage instead of NetGsmSmsMessage to send an OTP message.
For more information on sending OTP messages Netgsm OTP SMS Documentation
Sms Sending with Using Netgsm Facade
You can also send SMS or OTP messages using Netgsm Facade directly:
Reporting
You can get SMS reports by date range or netgsm bulk id.
To receive a report, a report object must be created.
Available Report Interfaces:
- NetgsmSmsReport (basic reports): Documentation
- NetgsmSmsDetailReport (detailed reports) Documentation
Object Parameters
Method | Description | Type | Required | NetgsmSmsReport Support | NetgsmSmsDetailReport Support |
---|---|---|---|---|---|
setStartDate() | Start Date | Carbon | No | Yes | Yes |
setEndDate() | End Date | Carbon | No | Yes | Yes |
setBulkId() | Netgsm Job Id | Integer | No | Yes | Yes |
setStatus() | Message Status | Integer | No | Yes | No |
setPhone() | Phone Number | String[] | No | Yes | Yes |
setHeader() | Header | String | No | Yes | Yes |
setVersion() | API Version | Integer | No | Yes | Yes |
Sample Usage
You can get the SMS report to passing the report object to the Netgsm::getReports method. If successful, SMS report results will be returned as a collection.
Fields in the report result may differ depending on the specified report type and the report version parameter sent.
Report Results
Field | Version | NetgsmSmsReport Support | NetgsmSmsDetailReport Support |
---|---|---|---|
jobId | All | Yes | Yes |
message | 1 | No | Yes |
phone | All | Yes | No |
status | All | Yes | Yes |
operatorCode | 2 | Yes | No |
length | 2 | Yes | No |
startDate | 2 | Yes | No |
startTime | 2 | Yes | No |
endDate | All | No | Yes |
errorCode | 2 | Yes | No |
header | All | No | Yes |
total | All | No | Yes |
Account Balance
With this service, you can inquire the remaining balance of your netgsm account and the credit balances of your packages.
Remaining Balance
Returns the remaining money balance on netgsm account. (TL)
Usage:
Output:
Remaining Package Credits
Returns the credit balances of the packages defined in the relevant netgsm account.
Usage:
Output:
IYS Integration
With these services you can add and search any address to IYS.
Add Address
This service is used to add a phone number or email address to IYS using NetGsm IYS service.
Object Parameters
Method | Description | Type | Required |
---|---|---|---|
setRefId() | Reference id to query your request | String | No |
setType() | Communication type | String | Yes |
setSource() | Source of permission | String | Yes |
setRecipient() | phone number or email address | String | Yes |
setStatus() | Permission status | String | Yes |
setConsentDate() | Permission date | Datetime (YYYY-MM-DD H:i:s) | Yes |
setRecipientType() | Recipient type | String | Yes |
setRetailerCode() | Retailer code | Integer | No |
setRetailerAccess() | Retailer access | Integer | No |
Usage
Response Parameters
Bulk Insert
Response Paramaters for Bulk Insert
Search Address
This service is used to search a phone number or email address on IYS using NetGsm IYS service.
Object Parameters
Method | Description | Type | Required |
---|---|---|---|
setType() | Communication type | String | Yes (if refId is set to null) |
setRecipient() | phone number or email address | String | Yes (if refId is set to null) |
setRecipientType() | Recipient type | String | Yes (if refId is set to null) |
setRefId() | Reference id to query your request | String | No |
Usage
Response Parameters
-
Response with a matched address.
- Response without any matched address
Testing
Changelog
Please see CHANGELOG for more information about what has changed recently.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update the tests as appropriate.
Security
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
Credits
- Hakan Özdemir
- Faruk Can
- Yunus Emre Deligöz
- Turan Karatuğ
- All Contributors
License
Laravel Netgsm is open-sourced software licensed under the MIT license.
All versions of netgsm with dependencies
guzzlehttp/guzzle Version ^7.1
illuminate/support Version ^11.0|^12.0
illuminate/notifications Version ^11.0|^12.0
illuminate/translation Version ^11.0|^12.0
nesbot/carbon Version ^3.8.5
ext-simplexml Version *