...
|
...
|
@@ -964,6 +964,9 @@ class Home extends Base { |
|
|
$data['description'] = @html_entity_decode($data['description']??'', ENT_COMPAT, 'UTF-8');
|
|
|
|
|
|
$data['to_name'] = $data['to_name'] ? json_decode($data['to_name'],true) : [];
|
|
|
if(!$data['to_name']){
|
|
|
$data['to_name'] = ["email"=>$email['email'],'name'=>''];
|
|
|
}
|
|
|
$data['cc'] = $data['cc'] ? json_decode($data['cc'],true) : [];
|
|
|
$data['bcc'] = $data['bcc'] ? json_decode($data['bcc'],true) : [];
|
|
|
|
...
|
...
|
|