2026-05-26 08:14:29 +02:00
|
|
|
@extends('layouts.adminlte')
|
|
|
|
|
|
|
|
|
|
@section('title', 'Nuovo Messaggio')
|
|
|
|
|
@section('page_title', 'Nuovo Messaggio Email')
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-9">
|
|
|
|
|
<div class="card card-primary">
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
<h3 class="card-title"><i class="fas fa-envelope mr-2"></i>Componi Messaggio</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<form action="{{ route('mailing.invia') }}" method="POST" enctype="multipart/form-data">
|
|
|
|
|
@csrf
|
|
|
|
|
|
2026-05-27 07:29:29 +02:00
|
|
|
@if(isset($senderAccounts) && $senderAccounts->count() > 0)
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="mittente_id">Mittente</label>
|
|
|
|
|
<select name="mittente_id" id="mittente_id" class="form-control">
|
|
|
|
|
<option value="">Sistema predefinito</option>
|
|
|
|
|
@foreach($senderAccounts as $sender)
|
|
|
|
|
<option value="{{ $sender->id }}">{{ $sender->email_name ?: $sender->email_address }} <{{ $sender->email_address }}></option>
|
|
|
|
|
@endforeach
|
|
|
|
|
</select>
|
|
|
|
|
<small class="text-muted">Seleziona un mittente per l'invio. Usa "Sistema predefinito" per inviare con l'account email principale.</small>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
2026-06-23 08:05:51 +02:00
|
|
|
@if(isset($firme) && $firme->count() > 0)
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="firma_id">Firma</label>
|
|
|
|
|
<select name="firma_id" id="firma_id" class="form-control">
|
|
|
|
|
<option value="">Nessuna</option>
|
|
|
|
|
@foreach($firme as $firma)
|
|
|
|
|
<option value="{{ $firma->id }}">{{ $firma->nome }}</option>
|
|
|
|
|
@endforeach
|
|
|
|
|
</select>
|
|
|
|
|
<small class="text-muted">Seleziona la firma da appender al messaggio.</small>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
2026-05-26 08:14:29 +02:00
|
|
|
@if($individui->count() > 0)
|
|
|
|
|
<div class="form-group" id="destinatari-form-group">
|
|
|
|
|
<label>Destinatari selezionati</label>
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table class="table table-bordered table-sm">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Codice</th>
|
|
|
|
|
<th>Nome</th>
|
|
|
|
|
<th>Email</th>
|
|
|
|
|
<th style="width: 50px;"></th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="destinatari-tbody">
|
|
|
|
|
@foreach($individui as $ind)
|
|
|
|
|
<tr id="dest-{{ $ind->id }}">
|
|
|
|
|
<td><span class="badge badge-secondary">{{ $ind->codice_id }}</span></td>
|
|
|
|
|
<td><strong>{{ $ind->cognito }}</strong> {{ $ind->nome }}</td>
|
|
|
|
|
<td>{{ $ind->contatti->where('tipo', 'email')->first()?->valore ?: 'Nessuna email' }}</td>
|
|
|
|
|
<td>
|
|
|
|
|
<button type="button" class="btn btn-xs btn-outline-danger" onclick="removeDestinatario({{ $ind->id }})" title="Rimuovi">
|
|
|
|
|
<i class="fas fa-times"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@endforeach
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden" name="destinatari_ids" id="destinatari_ids" value="{{ $individui->pluck('id')->join(',') }}">
|
|
|
|
|
<small class="text-muted" id="destinatari-count">{{ $individui->count() }} destinatari</small>
|
|
|
|
|
</div>
|
|
|
|
|
@else
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="lista_id">Lista Destinatari</label>
|
|
|
|
|
<select name="lista_id" id="lista_id" class="form-control">
|
|
|
|
|
<option value="">Seleziona lista...</option>
|
|
|
|
|
@forelse($liste as $lista)
|
|
|
|
|
<option value="{{ $lista->id }}">{{ $lista->nome }}</option>
|
|
|
|
|
@empty
|
|
|
|
|
<option value="">Nessuna lista disponibile</option>
|
|
|
|
|
@endforelse
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
@endif
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="oggetto">Oggetto *</label>
|
|
|
|
|
<input type="text" name="oggetto" id="oggetto" class="form-control" required>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="corpo">Messaggio *</label>
|
|
|
|
|
<textarea name="corpo" id="corpo" class="form-control" rows="10" required></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label>Allegati</label>
|
|
|
|
|
<div class="border rounded p-3">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#documentiModal">
|
|
|
|
|
<i class="fas fa-folder-open mr-1"></i> Seleziona da Documenti
|
|
|
|
|
</button>
|
|
|
|
|
<label class="btn btn-sm btn-success mb-0">
|
|
|
|
|
<i class="fas fa-upload mr-1"></i> Carica nuovo file
|
|
|
|
|
<input type="file" name="allegato" id="allegato" class="d-none" onchange="handleFileUpload(this)">
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="allegati-list">
|
|
|
|
|
@if(!empty($documentiSelezionati))
|
|
|
|
|
@foreach($documentiSelezionati as $doc)
|
|
|
|
|
<div class="d-flex align-items-center justify-content-between bg-light p-2 mb-2 rounded" id="allegato-{{ $doc->id }}">
|
|
|
|
|
<span><i class="fas fa-file mr-2"></i>{{ $doc->nome_file }}</span>
|
|
|
|
|
<button type="button" class="btn btn-xs btn-danger" onclick="removeAllegato({{ $doc->id }})">
|
|
|
|
|
<i class="fas fa-times"></i>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
@endforeach
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden" name="documenti_selezionati" id="documenti_selezionati" value="">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
|
<i class="fas fa-paper-plane mr-1"></i> Invia
|
|
|
|
|
</button>
|
|
|
|
|
<a href="{{ route('individui.index') }}" class="btn btn-secondary">
|
|
|
|
|
Annulla
|
|
|
|
|
</a>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="modal fade" id="documentiModal" tabindex="-1" role="dialog">
|
|
|
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
|
|
|
<div class="modal-content">
|
|
|
|
|
<div class="modal-header">
|
|
|
|
|
<h5 class="modal-title"><i class="fas fa-folder-open mr-2"></i>Seleziona Documenti</h5>
|
|
|
|
|
<button type="button" class="close" data-dismiss="modal">
|
|
|
|
|
<span>×</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
@if($documenti->count() > 0)
|
|
|
|
|
<div class="table-responsive">
|
|
|
|
|
<table class="table table-bordered table-hover table-sm">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th style="width: 40px;"></th>
|
|
|
|
|
<th>Nome File</th>
|
|
|
|
|
<th>Tipologia</th>
|
|
|
|
|
<th>Data</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
@foreach($documenti as $doc)
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<div class="custom-control custom-checkbox">
|
|
|
|
|
<input type="checkbox" class="custom-control-input doc-checkbox" id="doc-{{ $doc->id }}" value="{{ $doc->id }}" data-nome="{{ $doc->nome_file }}">
|
|
|
|
|
<label class="custom-control-label" for="doc-{{ $doc->id }}"></label>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
2026-06-23 11:12:28 +02:00
|
|
|
<td>{{ $doc->nome_file }} @if($doc->isLink()) <span class="badge badge-info"><i class="fas fa-link mr-1"></i>URL</span> @endif</td>
|
2026-05-26 08:14:29 +02:00
|
|
|
<td><span class="badge badge-info">{{ $doc->tipologia ?: $doc->tipo }}</span></td>
|
|
|
|
|
<td>{{ $doc->created_at->format('d/m/Y') }}</td>
|
|
|
|
|
</tr>
|
|
|
|
|
@endforeach
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
@else
|
|
|
|
|
<p class="text-muted">Nessun documento disponibile.</p>
|
|
|
|
|
@endif
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Annulla</button>
|
|
|
|
|
<button type="button" class="btn btn-primary" onclick="aggiungiDocumenti()">
|
|
|
|
|
<i class="fas fa-plus mr-1"></i> Aggiungi
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
|
|
@section('scripts')
|
|
|
|
|
<script>
|
|
|
|
|
let allegatiSelezionati = [];
|
|
|
|
|
|
|
|
|
|
function removeDestinatario(id) {
|
|
|
|
|
const row = document.getElementById('dest-' + id);
|
|
|
|
|
if (!row) return;
|
|
|
|
|
|
|
|
|
|
row.remove();
|
|
|
|
|
|
|
|
|
|
const input = document.getElementById('destinatari_ids');
|
|
|
|
|
if (input) {
|
|
|
|
|
let ids = input.value.split(',').filter(function(i) {
|
|
|
|
|
return i && parseInt(i) !== id;
|
|
|
|
|
});
|
|
|
|
|
input.value = ids.join(',');
|
|
|
|
|
|
|
|
|
|
const countEl = document.getElementById('destinatari-count');
|
|
|
|
|
if (countEl) {
|
|
|
|
|
countEl.textContent = ids.length + ' destinatari';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ids.length === 0) {
|
|
|
|
|
document.getElementById('destinatari-form-group').style.display = 'none';
|
|
|
|
|
document.getElementById('lista-form-group').style.display = 'block';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function aggiungiDocumenti() {
|
|
|
|
|
const checkboxes = document.querySelectorAll('.doc-checkbox:checked');
|
|
|
|
|
checkboxes.forEach(function(cb) {
|
|
|
|
|
const id = parseInt(cb.value);
|
|
|
|
|
const nome = cb.dataset.nome;
|
|
|
|
|
|
|
|
|
|
if (!allegatiSelezionati.includes(id)) {
|
|
|
|
|
allegatiSelezionati.push(id);
|
|
|
|
|
|
|
|
|
|
const container = document.getElementById('allegati-list');
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
div.className = 'd-flex align-items-center justify-content-between bg-light p-2 mb-2 rounded';
|
|
|
|
|
div.id = 'allegato-' + id;
|
|
|
|
|
div.innerHTML = '<span><i class="fas fa-file mr-2"></i>' + nome + '</span>' +
|
|
|
|
|
'<button type="button" class="btn btn-xs btn-danger" onclick="removeAllegato(' + id + ')">' +
|
|
|
|
|
'<i class="fas fa-times"></i></button>';
|
|
|
|
|
container.appendChild(div);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cb.checked = false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
document.getElementById('documenti_esistenti').value = allegatiSelezionati.join(',');
|
|
|
|
|
$('#documentiModal').modal('hide');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function removeAllegato(id) {
|
|
|
|
|
allegatiSelezionati = allegatiSelezionati.filter(function(a) { return a !== id; });
|
|
|
|
|
const el = document.getElementById('allegato-' + id);
|
|
|
|
|
if (el) el.remove();
|
|
|
|
|
document.getElementById('documenti_selezionati').value = allegatiSelezionati.join(',');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function handleFileUpload(input) {
|
|
|
|
|
if (input.files && input.files[0]) {
|
|
|
|
|
const file = input.files[0];
|
|
|
|
|
const container = document.getElementById('allegati-list');
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
div.className = 'd-flex align-items-center justify-content-between bg-light p-2 mb-2 rounded';
|
|
|
|
|
div.id = 'allegato-upload';
|
|
|
|
|
div.innerHTML = '<span><i class="fas fa-file mr-2"></i>' + file.name + ' (' + (file.size / 1024).toFixed(1) + ' KB)</span>' +
|
|
|
|
|
'<button type="button" class="btn btn-xs btn-danger" onclick="this.parentElement.remove(); input.value=\'\';">' +
|
|
|
|
|
'<i class="fas fa-times"></i></button>';
|
|
|
|
|
container.appendChild(div);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
@endsection
|