CHANGE_help_desk_tickets - VADIVEL J 2025-11-06 14:04
This commit is contained in:
parent
ec2b86c847
commit
6aefa5e5ba
@ -1,6 +1,18 @@
|
||||
<?php
|
||||
$value = json_decode($params['notification_data']['mail_content_json']??[],true);
|
||||
$contentWidth = (int)$value['body']['values']['contentWidth']??500;
|
||||
$value = "";
|
||||
|
||||
if(isset($params['notification_data'])){
|
||||
$value = $params['notification_data'];
|
||||
}
|
||||
|
||||
if(isset($params['notification'])){
|
||||
$value = $params['notification'];
|
||||
}
|
||||
|
||||
$value = json_decode($value['mail_content_json'] ?? '[]', true);
|
||||
|
||||
$contentWidth = (int) $value['body']['values']['contentWidth'] ?? 500;
|
||||
|
||||
?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user