Hola ivancheaib1, prueba con esto. Cambie el action de tu form y agregue 3 input de tipo hidden donde puedes modificar el mail.
HTML
Código HTML:
Ver original <p class="m_12">Busca más información sobre nosotros, ayudese a mejorar, mejore su calidad de vida, ya sea laboral - matrimonial y hasta espiritualmente, encuentre la felicidad con nosotros!.
</p> <div class="contatct-top"> <form method="post" action="send-mail.php"> <input type="text" class="text" value="Name" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Name';}"> <input type="text" class="text" value="Email" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email';}" style="margin-left: 10px"> <input type="text" class="text" value="Your Website" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Your Website';}"> <input type="text" class="text" value="Subject" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Subject';}" style="margin-left: 10px"> <textarea value="Message:" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Message';}">Message:
</textarea> <input type="submit" value="Submit">
<!-- Acá editas el mail -->
<input type="hidden" value="Consulta de usuario" name="subject" id="subject" />
send-mail.php
Código PHP:
Ver original<?php
$subject = $_POST['subject'];
//data
$msg = "Nombre: " .$_POST['name'] ."<br>\n";
$msg .= "Email: " .$_POST['email'] ."<br>\n";
$msg .= "Mensaje: " .$_POST['comments'] ."<br><br>\n";
//Headers
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=UTF-8\r\n";
$headers .= "From: <".$from. ">" ;
//send for each mail
foreach($to as $mail){
mail($mail, $subject, $msg, $headers); echo $mail;
}
?>
Espero te sirva.
Saludos.