Hello, after some update it doesn't send sms anymore
bpmn script:
$darbuotojas = assignedUser.name;
$telefonas = assignedUser.phoneNumber;
$rmaaktas = rmanr;
$preke = rmamodel;
$smsBody = string\concatenate(
'RMA aktas: ', $rmaaktas, '\n',
'Sveiki, Jūsų įrenginys ' , $preke,' užregistruotas remontui.', '\n',
'Prekės priėmimo perdavimo aktas ir prisijungimas prie RMA portalo išsiųstas į Jūsų el. paštą. ', '\n',
'Priskirtas darbuotojas: ', $darbuotojas, '\n',
'Tel. Nr.: ', $telefonas, '\n'
);
$smsId = record\create(
'Sms',
'to', entity\attribute('contact.phoneNumber'),
'body',$smsBody,
'parentType', 'Remontai','parentId', id
);
ext\sms\send($smsId);
error code:
[2024-01-31 12:24:23] ERROR: Process 65ba3bf7644b1ed8b element ha7a6v2x5s: Typed property Espo\Core\Sms\SmsSender::$sender must not be accessed before initialization
please help
bpmn script:
$darbuotojas = assignedUser.name;
$telefonas = assignedUser.phoneNumber;
$rmaaktas = rmanr;
$preke = rmamodel;
$smsBody = string\concatenate(
'RMA aktas: ', $rmaaktas, '\n',
'Sveiki, Jūsų įrenginys ' , $preke,' užregistruotas remontui.', '\n',
'Prekės priėmimo perdavimo aktas ir prisijungimas prie RMA portalo išsiųstas į Jūsų el. paštą. ', '\n',
'Priskirtas darbuotojas: ', $darbuotojas, '\n',
'Tel. Nr.: ', $telefonas, '\n'
);
$smsId = record\create(
'Sms',
'to', entity\attribute('contact.phoneNumber'),
'body',$smsBody,
'parentType', 'Remontai','parentId', id
);
ext\sms\send($smsId);
error code:
[2024-01-31 12:24:23] ERROR: Process 65ba3bf7644b1ed8b element ha7a6v2x5s: Typed property Espo\Core\Sms\SmsSender::$sender must not be accessed before initialization
please help
Comment