View Single Post
  #1  
Old 12-10-2005, 11:00 AM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,919

Don't get the drop down box? Look here.

I know i'm going to get questions on this so i'm going to explain it a bit better here without cluttering up the text in the script.

Drop down box usage:

First make sure you set $use_subject_drop to true, eample:

$use_subject_drop=true;

Next fill in the subjects you want to show in the drop down box. Example:

Example 1
PHP Code:
$subjects=array("Sales Department","Customer Service","Tech Support");
$emails=array("sales@domain.com","cust_service@domain.com","tech_support@domain.com"); 
Example 2
PHP Code:
$subjects=array("Department 1","Department 2");
$emails=array("sales@domain.com","cust_service@domain.com"); 
Note!
There MUST be as many values in $subjects as there are in $emails. They also must be in the same order. If I switch around the [b:7a7465bf48]Example 1[/b:7a7465bf48] you would have to re-order the emails also!

Example 3
PHP Code:
$subjects=array("Tech Support","Customer Service","Sales Department");
$emails=array("tech_support@domain.com","cust_service@domain.com","sales@domain.com"); 
If you have any more questions please post in this thread.
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote