Отправить атрибуты из API для шаблона

Я не могу отправить дополнительные атрибуты с моего сайта (API v3). В шаблоне № 1 я создаю текстовый фрейм
ID: {{params.postid}}
Имя: {{params.postname}}
и с моего сайта запустить мой код PHP.

require_once($_SERVER['DOCUMENT_ROOT'] . '/sendinblue/vendor/autoload.php');
$config = SendinBlue\Client\Configuration::getDefaultConfiguration()->setApiKey('api-key', 'key');
$apiInstance = new SendinBlue\Client\Api\SMTPApi( new GuzzleHttp\Client(), $config );
$templateId = 1; // int | Id of the template
$sendEmail = new \SendinBlue\Client\Model\SendEmail(); // \SendinBlue\Client\Model\SendEmail |
$sendEmail ['emailTo'] = ['[email protected]'];
$sendEmail ['attributes'] = ['postid'=>'12345', 'postname'=>'Post Title',];
try {
$result = $apiInstance->sendTemplate($templateId, $sendEmail);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling SMTPApi->sendTemplate: ', $e->getMessage(), PHP_EOL;
}

После того, как я добьюсь успеха, получу сообщение на мою почту с шаблоном № 1, но после & пустое имя Помоги мне, пожалуйста!

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]