palestine_sms_misr 0.0.9
palestine_sms_misr: ^0.0.9 copied to clipboard
Lightweight SMS Misr gateway implementation in dart (unofficial).
palestine_sms_misr (unofficial) #
Part of PalestineDevelopers #
Lightweight SMS Misr gateway implementation in dart (unofficial).
Table Of Contents #
Features #
- SMS Misr Implementation for both
- Message API
- OTP API
Getting started #
To start, import package
import 'package:palestine_sms_misr/palestine_sms_misr.dart';
copied to clipboard
Usage #
Create an instance.
PalSMSMisr palSMSMisr = PalSMSMisr(
userName: 'xxxxxxxx',
password: 'xxxxxxxx',
senderName: 'xxxxx',
language: '2', // 1, 2
otpToken: 'xxxxxx-xxxx-xxx-xxx-xxxxxx',
otpSignature: 'xxxxxxxx',
);
copied to clipboard
Messages API
await palSMSMisr.sendMessage(
phoneNumbers: 'xxxxxxxxxxx,xxxxxxxxxxx', // Egyptian Phone Number
message: 'Dev Test',
);
copied to clipboard
OTP API
await palSMSMisr.sendOTP(
phoneNumber: 'xxxxxxxxxxx', // Egyptian Phone Number
code: '12xxx', // optional
);
copied to clipboard