With this link I am trying to open a mail program with the emails they selected before. But I'm stuck with a error which says "people is not defined"
<td>
<div class="">
<label><strong>Select:</strong></label><br/>
<select class="custom-select" multiple name="people[]">
@foreach($peoples as $person)
<option value="{{$person->id}}">{{ $person->e_mail }}</option>
@endforeach
</select>
<a href="mailto:<?php foreach($_POST['people'] as $person){ echo $person;} ?>?subject={{ $document->id }} {{ $document->subject }}&body=Show Document: {{ (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]" }}" class="btn btn-info"><i class="fa fa-envelope"></i></a>
</div>
</td>