amyavari / iran-sms-laravel
A simple and convenient way to send SMS through Iranian SMS providers
Requires
- php: ^8.2
- illuminate/contracts: ^11.32 || ^12.0.1
- spatie/laravel-package-tools: ^1.92
Requires (Dev)
- larastan/larastan: ^3.4
- laravel/pint: ^1.22
- mockery/mockery: ^1.6
- nunomaduro/mock-final-classes: ^1.2
- orchestra/testbench: ^10.4
- phpunit/phpunit: ^11.5
- rector/rector: ^2.0
This package is auto-updated.
Last update: 2025-07-10 14:33:49 UTC
README
A simple and convenient way to send SMS through Iranian SMS providers.
To view the Persian documentation, please refer to README_FA.md.
برای مشاهده راهنمای فارسی، لطفاً به فایل README_FA.md مراجعه کنید.
Requirements
- PHP version
8.2.0
or higher - Laravel
^11.32
, or^12.0.1
List of Available SMS Providers
Provider Name (EN) | Provider Name (FA) | Provider Website | Provider Key | Version |
---|---|---|---|---|
SMS.ir | اس ام اس دات آی آر | sms.ir | sms_ir |
1.0.0 |
Meli Payamak | ملی پیامک | melipayamak.com | meli_payamak |
1.0.0 |
Payam Resan | پیام رسان | payam-resan.com | payam_resan |
1.0.0 |
Kavenegar | کاوه نگار | kavenegar.com | kavenegar |
1.0.0 |
Faraz SMS | فراز اس ام اس | farazsms.com | faraz_sms |
1.0.0 |
Raygan SMS | رایگان اس ام اس | raygansms.com | raygan_sms |
1.0.0 |
Caution
Providers have different rules for sending SMS messages. Please check providers_note_en.md.
Table of Content
- Installation
- Publish Vendor File
- Configuration
- Usage
- Working with Queues and Notifications
- Testing
- Contributing
Installation
To install the package via Composer, run:
composer require amyavari/iran-sms-laravel
Publish Vendor Files
Publish All Files
To publish all vendor files (config and migrations):
php artisan iran-sms:install
Note: To create tables from migrations:
php artisan migrate
Publish Specific Files
To publish only the config file:
php artisan vendor:publish --tag=iran-sms-config
To publish only the migration file:
php artisan vendor:publish --tag=iran-sms-migrations
Note: To create tables from migrations:
php artisan migrate
Configuration
Single Provider Setup
To configure a single SMS provider, add the following to your .env
file:
# Default provider SMS_PROVIDER=<default_provider> # If provider uses username and password SMS_USERNAME=<username> SMS_PASSWORD=<password> # If provider uses an API token SMS_TOKEN=<api_token> # Default sender number SMS_FROM=<default_sender_number>
Note: For the SMS_PROVIDER
, refer to the Provider Key
column in the List of Available SMS Providers.
Multiple Provider Setup
After publishing the config file (see Publish Vendor Files), you can customize the environment variable names for each provider you want to use. Then, define those variables in your .env
file.
For example, to configure the trez
provider:
'providers' => [ 'trez' => [ 'username' => env('SMS_TREZ_USERNAME', ''), // Previously: env('SMS_USERNAME', '') 'password' => env('SMS_TREZ_PASSWORD', ''), // Previously: env('SMS_PASSWORD', '') 'token' => env('SMS_TREZ_TOKEN', ''), // Previously: env('SMS_TOKEN', '') 'from' => env('SMS_TREZ_FROM', ''), // Previously: env('SMS_FROM', '') ], // Repeat this structure for any other providers you want to configure ],
Define the corresponding variables in your .env
file:
SMS_TREZ_USERNAME=<your_username> SMS_TREZ_PASSWORD=<your_password> SMS_TREZ_TOKEN=<your_token> SMS_TREZ_FROM=<your_sender_number> # Repeat for other providers you defined
Usage
Note: This package supports fluent method chaining like Sms::provider()->otp()->log()->send();
, but for simplicity, this manual demonstrates usage with separate instances.
Creating an SMS Instance
You can create an SMS instance using the facade provided by the package:
use AliYavari\IranSms\Facades\Sms; // Using the default provider $sms = Sms::otp(string $phone, string $message); $sms = Sms::text(string|array $phones, string $message); $sms = Sms::pattern(string|array $phones, string $patternCode, array $variables); // Using a specific provider $sms = Sms::provider(string $provider)->otp(...); $sms = Sms::provider(string $provider)->text(...); $sms = Sms::provider(string $provider)->pattern(...);
Note: For the $provider
name, refer to the Provider Key
column in the List of Available SMS Providers.
Changing the Sender Number at Runtime
To send an SMS from a number other than the default SMS_FROM
, use the from()
method when building your message:
$sms->from(string $from);
Automatic Logging
You can chain log configurations on your SMS instance before sending.
To help keep your code clean and logging consistent, especially when managing SMS sending from a central location, this package provides convenient methods to configure logging behavior based on the SMS type and sending status.
Note: Before using any logging features, make sure to create the necessary tables. (See Publish Vendor Files.)
Log Based on SMS Type
$sms->log(bool $log = true); // Log any type of SMS $sms->logOtp(bool $log = true); // Log only OTP messages $sms->logText(bool $log = true); // Log only text messages $sms->logPattern(bool $log = true); // Log only pattern messages
Log Based on Sending Status
Note: These methods implicitly enable logging. If you use them without calling a log*()
method first, log(true)
will be applied automatically.
$sms->logSuccessful(); // Log only if the message was sent successfully $sms->logFailed(); // Log only if the message failed to send
Make Your Log Behavior Fluent
You can chain the logging methods to define custom logic fluently:
// Example: Log all message types except OTPs, only if they are sent successfully $sms->log()->logOtp(false)->logSuccessful();
Prune Old Logs
To help keep your log table clean, this package provides an Artisan command to prune old log records. You can schedule this command using Laravel's task scheduler
Example: Delete logs created before 30 days ago
use Illuminate\Support\Facades\Schedule; Schedule::command('iran-sms:prune-logs --days=30')->daily();
Sending SMS
To send the SMS:
$sms->send();
Note: This method throws an exception if a client or server error occurs. See the throw
method in HTTP Client.
Checking Sending Status
To check the status after sending:
$sms->successful(); // bool $sms->failed(); // bool // Get the error message (returns null if successful) $sms->error(); // string|null
Working with Queues and Notifications
Queues
To send an SMS instance using queues, you can create an SMS instance and dispatch it to a job where you call the send()
method. You can use the AliYavari\IranSms\Contracts\Sms
interface as a constructor type-hint.
Note: It's recommended to configure log options here to keep your code clean and consistent.
Example:
namespace App\Jobs; use AliYavari\IranSms\Contracts\Sms; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Queue\Queueable; final class SendSms implements ShouldQueue { use Queueable; /** * Create a new job instance. */ public function __construct(private Sms $sms) {} /** * Execute the job. */ public function handle(): void { $this->sms->log(true)->send(); } }
Notifications
To send SMS using notifications, define a toSms
method in your notification class and return an SMS instance. Also, include AliYavari\IranSms\Channels\SmsChannel
in the via
method.
Note: The toSms
method must return an SMS instance with your log setup (if desired). The channel will handle sending it.
Example:
namespace App\Notifications; use AliYavari\IranSms\Channels\SmsChannel; use AliYavari\IranSms\Facades\Sms; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; final class MyNotification extends Notification { use Queueable; /** * Get the notification channels. */ public function via(object $notifiable): array { return [SmsChannel::class]; } /** * Get the SMS representation of the notification. */ public function toSms(object $notifiable) { return Sms::text($notifiable->phone, 'Hi')->logFailed(); } }
Testing
This package provides fluent methods to fake and test SMS sending:
use AliYavari\IranSms\Facades\Sms; /** * Fake the default provider to return successful response */ Sms::fake(); /** * Fake specific providers to return successful responses * * Note: Use `default` as the provider key to target the default provider */ Sms::fake([/* provider keys */]); /** * Equivalent to the above (explicit success definition) */ Sms::fake([...], Sms::successfulRequest()); /** * Fake providers to return failed responses * * Optional: custom error message and error code */ Sms::fake([...], Sms::failedRequest(string $errorMessage = 'Error Message', string|int $errorCode = 0)); /** * Fake providers to throw a ConnectionException */ Sms::fake([...], Sms::failedConnection()); /** * Define different behaviors per provider */ Sms::fake([ 'provider_one' => Sms::failedConnection(), 'provider_two' => Sms::failedRequest(), 'provider_three' => Sms::failedConnection(), ]);
Note: Defining both global behavior and per-provider behaviors together is not allowed in a single call. Use one strategy per fake()
call.
Note: If you define multiple behaviors for the same provider, the last one will override the previous definitions.
Contributing
Thank you for considering contributing to the Iran SMS Laravel! The contribution guide can be found in the CONTRIBUTING.md. This file provides a step-by-step guide to easily add a new driver (SMS provider) to the package.
License
Iran SMS Laravel was created by Ali Mohammad Yavari under the MIT license.