Hi,

I am trying to get the new version 3.00 to work.
I have it working now but i want to use the CC or BCC feature.
I have a form were i can choose a person, see code
Code:
<tr> 
  <td>For whom is this e-mail:</td>
  <td>
	  <select name="cc" type="text">
	  <option value="" selected>Select a person...</option>
	  <option value="">----------------------------------</option>
	  <option value="MyEMail_at_Somewhere.nl">Aschwin van Loon</option>
	</select>
  </td>
</tr>
when I press the submit button, I only get the mail from my recipients, but not from the CC or BCC that i selected.

What am I doing wrong?