 |
 |
Contact Information
1401 Wells Fargo Plaza, 1201 Pacific Avenue
Tacoma, Washington 98402
(253) 572-1000
Fax: (253) 572-1300
Email Us
|
 |
 |
 |
Contact
Form
|
|
/* this part can either be in the same file as the form or it can be in a different file. If you want this in a different file, make the "action" of the form go to that file */
if(sizeof($_POST)) {
$body = "";
while(list($key, $val) = each($HTTP_POST_VARS)) {
$body .= "$key: $val\n";
}
mail("info@dicksonlegal.com", // to
"Contact Form",
$body);
echo "Thanks for your submission. The results were mailed.";
}
// end form processing
?>
|
|
|
 |