Reputation: 913
I have a very simple contact form on my site, Im looking for users to be able to just put a check mark next to "CC:" to have it CC them without creating a whole new field for that they have to fill out again.
Here is the HTML:
<form action="send.php" method="post" name="form1">
Name: <input name="name" size="35"><br/>
E-mail:<input name="email" size="35"><br/>
CC: <input input type="checkbox" name="mailcc"><br/>
Comment: <textarea cols="35" name="comment" rows="5"></textarea> <br />
<input name="Submit" type="submit" value="Submit">
</form>
And here is the PHP:
<?php
$name = $_REQUEST['name'] ;
$email = $_REQUEST['email'] ;
$comment = $_REQUEST['comment'] ;
mail( "[email protected]", "Message Title", "Name: $name\n Email: $email\n Comments: $comment\n " );
echo "Message Sent! Thanks!"
?>
Ive been trying to add some items from this site:
But it wants to create a text field for CC which means the user would have to enter their email twice.
Ive also tried $mailheader.= "Cc: " . $email ."\n";
but I cant get that to work either.
Upvotes: 1
Views: 3908
Reputation: 71
Is the Cc address you are testing with the same as the "to" address([email protected] on your example)?
I did a quick test and with this code i get only one mail:
<?php
$to = "[email protected]";
$subject = "Testing";
$message = "Testing message";
$headers = "Cc: [email protected]";
mail($to, $subject, $message, $headers);
But with this i get a copy to my other email account:
<?php
$to = "[email protected]";
$subject = "Testing";
$message = "Testing message";
$headers = "Cc: [email protected]";
mail($to, $subject, $message, $headers);
Upvotes: 0
Reputation:
value="1"
) in HTML.$mailheader
) to the end of mail()
function, as the last parameter.So essentially:
$name = $_POST['name'] ;
$email = $_POST['email'] ;
$comment = $_POST['comment'] ;
if ($_POST['mailcc'] == 1) {
$mailheader .= "CC: $name <$email>";
}
mail("[email protected]", "Message Title", "Name: $name\n Email: $email\n Comments: $comment\n ", $mailheader);
echo "Message Sent! Thanks!";
Upvotes: 2