This question already has an answer here:
I want to send the email to two emails in one time, the first one to office@example.com
the second one to guest who fill the form.
Here my code
$email_to = "$c[email]";
$email_toko="office@example.com";
$subjek="**The Bandha Hotel** – Request for Pricing Submitted";
$dari = "From: {$email_toko}
"
. "MIME-Version: 1.0
"
. "Reply-To: {$email_to}
"
. "Content-type: text/html; charset=iso-8859-1
"
. 'X-Mailer: PHP/' . phpversion();
mail($email_to,$subjek,$pesan,$dari);
mail($email_toko,$subjek,$pesan,$dari);
but the email just send to $email_toko
or just go to office@example.com
. So the guest doesn't receive the email.help me please
</div>