diff --git a/modules/interventi/actions.php b/modules/interventi/actions.php index bd66824db..593e031e1 100644 --- a/modules/interventi/actions.php +++ b/modules/interventi/actions.php @@ -114,7 +114,7 @@ switch (post('op')) { if (!in_array($tecnico_presente['id_tecnico'], $tecnici_assegnati)) { $tecnico = Anagrafica::find($tecnico_presente['id_tecnico']); if (!empty($tecnico['email'])) { - $template = Template::where('name', 'Notifica rimozione intervento')->first()->id; + $template = Template::where('name', 'Notifica rimozione intervento')->first(); if (!empty($template)) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); @@ -138,7 +138,7 @@ switch (post('op')) { $tecnico = Anagrafica::find($tecnico_assegnato); if (!empty($tecnico['email'])) { - $template = Template::where('name', 'Notifica intervento')->first()->id; + $template = Template::where('name', 'Notifica intervento')->first(); if (!empty($template)) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); @@ -326,12 +326,12 @@ switch (post('op')) { // Notifica al tecnico if (setting('Notifica al tecnico l\'assegnazione all\'attività')) { - if (!empty($tecnico['email'])) { - $template = Template::where('name', 'Notifica intervento')->first()->id; + if (!empty($tecnico->email)) { + $template = Template::where('name', 'Notifica intervento')->first(); if (!empty($template)) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); - $mail->addReceiver($tecnico['email']); + $mail->addReceiver($tecnico->email); $mail->save(); flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } @@ -964,7 +964,7 @@ switch (post('op')) { // Notifica rimozione dell' intervento al tecnico if (setting('Notifica al tecnico la rimozione della sessione dall\'attività')) { if (!empty($tecnico['email'])) { - $template = Template::where('name', 'Notifica rimozione intervento')->first()->id; + $template = Template::where('name', 'Notifica rimozione intervento')->first(); if (!empty($template)) { $mail = Mail::build(auth()->getUser(), $template, $id_record); diff --git a/modules/interventi/modutil.php b/modules/interventi/modutil.php index b526b59fd..f6df9ce5f 100755 --- a/modules/interventi/modutil.php +++ b/modules/interventi/modutil.php @@ -107,7 +107,7 @@ if (!function_exists('add_tecnico')) { // Notifica nuovo intervento al tecnico if (setting('Notifica al tecnico l\'aggiunta della sessione nell\'attività')) { if (!empty($anagrafica['email'])) { - $template = Template::where('name', 'Notifica intervento')->first()->id; + $template = Template::where('name', 'Notifica intervento')->first(); if (!empty($template)) { $mail = Mail::build(auth()->getUser(), $template, $id_intervento); diff --git a/reset.php b/reset.php index c7350c7c2..91b244603 100755 --- a/reset.php +++ b/reset.php @@ -44,7 +44,7 @@ switch (post('op')) { $utente->reset_token = secure_random_string(); $utente->save(); - $template = Template::where('name', 'Reset password')->first()->id; + $template = Template::where('name', 'Reset password')->first(); $mail = Mail::build($utente, $template, $utente->id); $mail->addReceiver($utente->email);