wearesho-team/alphasms-message-delivery

Message Delivery AlphaSMS integration

Maintainers

👁 Horat1us

Package info

github.com/wearesho-team/alphasms-message-delivery

pkg:composer/wearesho-team/alphasms-message-delivery

Statistics

Installs: 155

Dependents: 0

Suggesters: 1

Stars: 0

Open Issues: 4

3.2.0 2025-11-24 16:22 UTC

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT e24f79d409e867cc778e5ef9352513c33f5261ac

  • Alexander Letnikow <reclamme.woop@gmail.com>

README

👁 Test & Lint
👁 Latest Stable Version
👁 Total Downloads
👁 codecov

wearesho-team/message-delivery implementation of Delivery\ServiceInterface

Installation

composer require wearsho-team/alphasms-message-delivery:^3.0

Cli Usage

You can use simple CLI tool to send messages and check balance:

# Check balance
./alphasms balance
# Send messages interactively
./alphasms send

Usage

Configuration

Variable Required Description
ALPHASMS_SENDER_NAME yes Sender Name for SMS (alpha-name)
ALPHASMS_API_KEY yes Can be received on AlphaSMS Panel
ALPHASMS_WEBHOOK_URL no URL for Webhooks with SMS statuses

VoiceOTP Service

This section describes how to use the Voice OTP functionality of the AlphaSMS service.

Usage

The AlphaSMS service provides a method to send one-time passwords (OTP) via voice calls. This is useful for two-factor authentication or verification processes.

<?php

/** @var \Wearesho\Delivery\AlphaSms\Service $service */

// Create a Voice OTP request
$request = new \Wearesho\Delivery\AlphaSms\VoiceOtp\Request(
 id: 12345, // Unique identifier for the request
 phoneNumber: '380991234567' // Phone number to receive the voice call
);

try {
 // Send the Voice OTP request
 $response = $service->voiceOtp($request);

 // Get the OTP code (4 digits)
 $code = $response->code();

 // Get the price of the operation
 $price = $response->price();

 echo "Voice OTP sent successfully. Code: {$code}, Price: {$price}";
} catch (\Wearesho\Delivery\Exception $e) {
 // Handle delivery exceptions
 echo "Failed to send Voice OTP: " . $e->getMessage();
}

Request Parameters

  • id (int): A unique identifier for the request. This can be used for tracking or reference purposes.
  • phoneNumber (string): The recipient's phone number in international format (e.g., 380991234567).

Response Properties

  • code() (string): Returns the 4-digit OTP code that was sent to the recipient.
  • price() (float): Returns the cost of the voice call operation.

Error Handling

The voiceOtp() method may throw a \Wearesho\Delivery\Exception in the following cases:

  • Invalid request parameters
  • Network connectivity issues
  • Service provider errors
  • Invalid response format

Always wrap the service call in a try-catch block to handle potential exceptions.

Command Line Interface

For command-line usage, you can use the provided Symfony Console command:

# Basic usage
$ ./alphasms voice-otp 380991234567

# With custom request ID
$ ./alphasms voice-otp 380991234567 --id=12345

Authors

License

MIT