SMS service

This commit is contained in:
Simon Pocrnjič
2025-10-24 21:39:10 +02:00
parent 3a2eed7dda
commit 930ac83604
52 changed files with 3830 additions and 36 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Services\Sms;
class SmsMessage
{
public function __construct(
public string $to,
public string $content,
public ?string $sender = null, // provider sname
public ?string $senderPhone = null, // phone number for 'from'
public ?string $countryCode = null, // cc param, optional
public bool $deliveryReport = false, // dr=1 when true
public ?string $clientReference = null,
) {}
}