add SMTP sender
This commit is contained in:
@@ -14,6 +14,19 @@
|
||||
<form action="{{ route('mailing.invia') }}" method="POST" enctype="multipart/form-data">
|
||||
@csrf
|
||||
|
||||
@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
|
||||
|
||||
@if($individui->count() > 0)
|
||||
<div class="form-group" id="destinatari-form-group">
|
||||
<label>Destinatari selezionati</label>
|
||||
|
||||
Reference in New Issue
Block a user