Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Utils.php
1<?php
2
4
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}
getSentTemplateMessage(string $from, string $to)
Definition Utils.php:12