Go to file
Daniel Seifert c502926daf
inject logger, do not catch exceptions that should lead to termination
2022-07-01 11:05:40 +02:00
.github/workflows add exceptions, fix auth, implement response, sanitize recipient and sender 2022-06-24 14:46:23 +02:00
src inject logger, do not catch exceptions that should lead to termination 2022-07-01 11:05:40 +02:00
README.md inject logger, do not catch exceptions that should lead to termination 2022-07-01 11:05:40 +02:00
composer.json cleanup code 2022-06-24 16:01:37 +02:00
todo.txt add exceptions, fix auth, implement response, sanitize recipient and sender 2022-06-24 14:46:23 +02:00

README.md

$client = new Client('accesstoken');
$client->setLogger($logger);  // optional
$request = new D3\LinkmobilityClient\SMS\RequestFactory($message, $client)->getSmsRequest())
    ->addRecipient(new D3\LinkmobilityClient\ValueObject\Recipient('recipient', 'DE'));
$client->request($request)