k-msalehi/ir-sms

用于伊朗短信网关的PHP封装。

1.1.3 2024-07-28 13:05 UTC

This package is auto-updated.

Last update: 2024-09-28 13:30:24 UTC


README

此包提供了一个接口,用于通过模式与伊朗短信网关交互发送短信。

安装

要安装此包,请使用Composer

composer require kmsalehi/ir-sms

配置

在config/ir-sms.php中有一个配置文件,具有以下结构

<?php
return [
    'debug' => true,
    'sms.ir' => [
        'api_key' => 'your_api_key_here',
        'username' => 'your_username_here',
        'password' => 'your_password_here',
    ],
];

您还可以创建一个config/ir-sms-local.php文件以覆盖默认配置。

用法

通过模式发送短信

要使用模式发送短信,请使用SmsIr类。