You should be using a server-side language to achieve this :
PHP or .NET or Perl
PHP is probably the most common.
Search the forum there are quite a few scripts floating around. You'll basically be using the
mail() function. And look closely at
Example 1089
- PHP: Select all
// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";
See the last line? You'll need to incorporate that into the script.
Here's a good one to get you started:
</span></span>PHP Mail Form: Secure and Protected