View Single Post
  #2 (permalink)  
Old Jun 15th, 2007, 12:17
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Forms and e-mail

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
Reply With Quote