Aggiunto supporto alle notifiche di lettura email via API
This commit is contained in:
parent
be959d181d
commit
898c5e23d5
|
@ -29,6 +29,7 @@ class RapportinoIntervento extends Resource implements RetrieveInterface, Create
|
||||||
'subject' => $subject,
|
'subject' => $subject,
|
||||||
'body' => $body,
|
'body' => $body,
|
||||||
'prints' => $prints,
|
'prints' => $prints,
|
||||||
|
'read_notify' => $template->read_notify,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +53,7 @@ class RapportinoIntervento extends Resource implements RetrieveInterface, Create
|
||||||
// Contenuti
|
// Contenuti
|
||||||
$mail->subject = $data['subject'];
|
$mail->subject = $data['subject'];
|
||||||
$mail->content = $data['body'];
|
$mail->content = $data['body'];
|
||||||
|
$mail->read_notify = $data['read_notify'];
|
||||||
|
|
||||||
// Stampe da allegare
|
// Stampe da allegare
|
||||||
$prints = $data['prints'];
|
$prints = $data['prints'];
|
||||||
|
|
Loading…
Reference in New Issue