First time in this forums...
I have a mail- form like the ordniary mail(), but if the one who send me a email want's a copy of it - how should i do that?
Is it possible to do this with a checkbox?
Thanks
Moderator: General Moderators
Code: Select all
<input type="checkbox" name="check_box" value="Yes">Code: Select all
<?php
if($_POST["check_box"] == "Yes")
mail(); // Mail a copy to their address
?>