Teren-app/app/Services/Sms/SmsMessage.php
Simon Pocrnjič 930ac83604 SMS service
2025-10-24 21:39:10 +02:00

17 lines
463 B
PHP

<?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,
) {}
}