We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6abdd commit fb247a0Copy full SHA for fb247a0
modules/os2forms_forloeb/src/MaestroHelper.php
@@ -389,7 +389,10 @@ private function sendNotificationDigitalPost(
389
$senderLabel = $subject;
390
$messageLabel = $subject;
391
392
- $recipientLookupResult = $this->digitalPostHelper->lookupRecipient($recipient);
+ // Remove all non-digits from recipient identifier.
393
+ $recipientIdentifier = preg_replace('/[^\d]+/', '', $recipient);
394
+
395
+ $recipientLookupResult = $this->digitalPostHelper->lookupRecipient($recipientIdentifier);
396
$actions = [
397
(new Action())
398
->setActionCode(SF1601::ACTION_SELVBETJENING)
0 commit comments