Fix invio sollecito di pagamento
This commit is contained in:
parent
06d0b87cee
commit
a7bf474c84
|
@ -238,8 +238,8 @@ class Mail extends Model
|
|||
$this->read_notify = $template->read_notify;
|
||||
|
||||
// Contentuto e oggetto
|
||||
$this->content = $template->body;
|
||||
$this->subject = $template->subject;
|
||||
$this->content = $template->getTranslation('body');
|
||||
$this->subject = $template->getTranslation('subject');
|
||||
|
||||
// Reply To
|
||||
if (!empty($template['tipo_reply_to'])) {
|
||||
|
|
|
@ -74,7 +74,7 @@ switch (post('op')) {
|
|||
break;
|
||||
|
||||
case 'send-sollecito':
|
||||
$template = (new Template())->getByField('title', 'Sollecito di pagamento raggruppato per anagrafica', Models\Locale::getPredefined()->id);
|
||||
$template = Template::find((new Template())->getByField('title', 'Sollecito di pagamento raggruppato per anagrafica', Models\Locale::getPredefined()->id));
|
||||
|
||||
$list = [];
|
||||
$anagrafiche = [];
|
||||
|
|
Loading…
Reference in New Issue