add SMTP sender
This commit is contained in:
@@ -13,6 +13,19 @@
|
||||
<form action="{{ route('mailing.invio.elabora') }}" 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 massivo.</small>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="form-group">
|
||||
<label>Liste Destinatari *</label>
|
||||
<select name="liste[]" id="liste" class="form-control" multiple required size="4">
|
||||
|
||||
Reference in New Issue
Block a user