1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Utils.php
См. документацию.
1<?php
2
3namespace Bitrix\MessageService\Providers\Edna\SMS;
4
5use Bitrix\Main\Result;
6use Bitrix\MessageService\Providers;
7use Bitrix\MessageService\Providers\Edna\EdnaUtils;
8
9
10class Utils extends EdnaUtils
11{
12 public function getSentTemplateMessage(string $from, string $to): string
13 {
14 return '';
15 }
16
18 {
19 return new ExternalSender(
20 $this->optionManager->getOption(Providers\Constants\InternalOption::API_KEY),
22 $this->optionManager->getSocketTimeout(),
23 $this->optionManager->getStreamTimeout()
24 );
25 }
26
27 public function getMessageTemplates(string $subject = ''): Result
28 {
29 return new Result();
30 }
31}
Определения result.php:20
getSentTemplateMessage(string $from, string $to)
Определения Utils.php:12
getMessageTemplates(string $subject='')
Определения Utils.php:27