I can not send to more than one email

0

I have the following code for sending email, however only in the first email does the second receive no.

$to  = "[email protected]";
$to  .= "[email protected]";

$subject = 'Guarapari Virtual - Corretores On-Line';

$message = "
Prezado cliente!<p>
<b>{$enviar_gc_nome}</b> visitou o Guarapari Virtual e enviou uma solicitação de orçamento para você pelo canal Corretores On-Line.<p>
";
$message .= '<b>E-Mail: </b>'.$enviar_gc_email.'<p>';
$message .= '<b>Telefone: </b>'.$enviar_gc_telefone.'<p>';
$message .= '<b>Data da entrada: </b>'.$enviar_gc_dataentrada.'<p>';
$message .= '<b>Data da saída: </b>'.$enviar_gc_datasaida.'<p>';
$message .= '<b>Número de adultos: </b>'.$enviar_gc_nadultos.'<p>';
$message .= '<b>Número de crianças: </b>'.$enviar_gc_ncriancas.'<p>';
$message .= '<b>Mensagem: </b>'.$enviar_gc_msg.'<p>';
$message .= '<p>';
$message .= 'Obrigado!';

$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$headers .= "From: {$enviar_gc_nome} <{$enviar_gc_email}>" . "\r\n";

mail($to, $subject, $message, $headers);
    
asked by anonymous 08.06.2018 / 18:58

1 answer

0

This should work because it is the recommended mode in the documentation:

$to  = '[email protected]' . ', ';
$to .= '[email protected]';
    
08.06.2018 / 20:05