mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
119 lines
3.6 KiB
PHP
Executable File
119 lines
3.6 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
|
|
* Copyright (C) DevCode s.r.l.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace HTMLBuilder\Manager;
|
|
|
|
use Modules;
|
|
use Modules\Emails\Mail;
|
|
|
|
/**
|
|
* Gestione allegati.
|
|
*
|
|
* @since 2.4.2
|
|
*/
|
|
class EmailManager implements ManagerInterface
|
|
{
|
|
/**
|
|
* Gestione "log_email".
|
|
* Esempio: {( "name": "log_email", "id_module": "2", "id_record": "1" )}.
|
|
*
|
|
* @param array $options
|
|
*
|
|
* @return string
|
|
*/
|
|
public function manage($options)
|
|
{
|
|
// Visualizzo il log delle operazioni di invio email
|
|
$emails = Mail::whereRaw('id IN (SELECT id_email FROM zz_operations WHERE id_record = '.prepare($options['id_record']).' AND id_module = '.prepare($options['id_module']).' AND id_email IS NOT NULL)')
|
|
->orderBy('created_at', 'DESC')
|
|
->get();
|
|
|
|
if ($emails->isEmpty()) {
|
|
return ' ';
|
|
}
|
|
|
|
// Codice HTML
|
|
$result = '
|
|
<div class="box box-info collapsable collapsed-box">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"><i class="fa fa-envelope"></i> '.tr('Email inviate: _NUM_', [
|
|
'_NUM_' => $emails->count(),
|
|
]).'</h3>
|
|
<div class="box-tools pull-right">
|
|
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i></button>
|
|
</div>
|
|
</div>
|
|
<div class="box-body">
|
|
<ul>';
|
|
|
|
foreach ($emails as $email) {
|
|
$receivers = $email->receivers->pluck('address')->toArray();
|
|
|
|
$prints = [];
|
|
$list = $email->prints;
|
|
foreach ($list as $print) {
|
|
$prints[] = $print['title'];
|
|
}
|
|
|
|
$uploads = [];
|
|
$list = $email->uploads;
|
|
foreach ($list as $upload) {
|
|
$uploads[] = $upload['name'];
|
|
}
|
|
|
|
$sent = !empty($email['sent_at']) ? tr('inviata il _DATE_ alle _HOUR_', [
|
|
'_DATE_' => dateFormat($email['sent_at']),
|
|
'_HOUR_' => timeFormat($email['sent_at']),
|
|
]) : tr('in coda di invio');
|
|
|
|
$descrizione = Modules::link('Stato email', $email->id, tr('Email "_EMAIL_" da _USER_', [
|
|
'_EMAIL_' => $email->template->name,
|
|
'_USER_' => $email->user->username,
|
|
]));
|
|
|
|
$result .= '
|
|
<li>
|
|
'.$descrizione.' ('.$sent.').
|
|
<ul>
|
|
<li><b>'.tr('Destinatari').'</b>: '.implode(', ', $receivers).'.</li>';
|
|
|
|
if (!empty($prints)) {
|
|
$result .= '
|
|
<li><b>'.tr('Stampe').'</b>: '.implode(', ', $prints).'.</li>';
|
|
}
|
|
|
|
if (!empty($uploads)) {
|
|
$result .= '
|
|
<li><b>'.tr('Allegati').'</b>: '.implode(', ', $uploads).'.</li>';
|
|
}
|
|
|
|
$result .= '
|
|
</ul>
|
|
</li>';
|
|
}
|
|
|
|
$result .= '
|
|
</ul>
|
|
</div>
|
|
</div>';
|
|
|
|
return $result;
|
|
}
|
|
}
|