Files
caloriethingy.com/common/components/PostmarkComponent.php
2025-02-19 14:51:16 +01:00

19 lines
362 B
PHP

<?php
namespace common\components;
use Postmark\PostmarkClient;
use yii\base\Component;
class PostmarkComponent extends Component
{
/** @var PostmarkClient */
public PostmarkClient $client;
public mixed $serverToken;
public function init()
{
parent::init();
$this->client = new PostmarkClient($this->serverToken);
}
}