Jump to content

Help on email Bcc


I-AM-OBODO

Recommended Posts

How can i add bcc to my script and form. the script and form below is working perfectly. if i include more than one email, it shows all the people the same message was sent to. so the question, i dont know how to add the bcc to my html form so it could work with my script. help needed pls

thanx

 

 

 

This is my script

 

<?php

 

$name=$_POST['name'];

$email=$_POST['email'];

$to=$_POST['to'];

$subject=$_POST['subject'];

$message=$_POST['message'];

 

 

 

if(mail($to, $subject, $message,"From: $email\n")) 

{

 

echo "Message Sent";

 

} else {

 

echo "There was a proble so message was not sent";

 

}

 

 

?>

 

here is my form:

 

<form id="form1" name="form1" method="post" action="">

  <table width="100%" border="0" cellspacing="0" cellpadding="0">

    <tr>

      <td>Your name      </td>

      <td><input name="name" type="text" id="name" /></td>

    </tr>

    <tr>

      <td>Your Email      </td>

      <td><input name="email" type="text" id="email" /></td>

    </tr>

    <tr>

      <td>Recipient Email      </td>

      <td><input name="to" type="text" id="to" /></td>

    </tr>

    <tr>

      <td>Bcc      </td>

      <td><input name="bcc" type="text" id="bcc" /></td>

    </tr>

    <tr>

      <td>Subject      </td>

      <td><input name="subject" type="text" id="subject" /></td>

    </tr>

    <tr>

      <td width="25%" height="64" valign="top">Message</td>

      <td width="75%" valign="top"><textarea name="message" cols="50" rows="15" id="message"></textarea></td>

    </tr>

    <tr>

      <td> </td>

      <td><input name="send" type="submit" id="send" value="Send" /></td>

    </tr>

    <tr>

      <td colspan="2"> </td>

    </tr>

    <tr>

      <td colspan="2"> </td>

    </tr>

  </table>

</form>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.