I'm having trouble with the contact form on my website. I am using it in two places--the home page and on the contact us page. In both instances, when someone fills out the form it does not submit. It just goes into a spinner death-spiral. I am including the html files and the php file for the home page, contact us page. The only change I've made to the include/form.php is to add my email address and name where indicated. Please let me know if I am missing a key element to the code to make it work. I have had other .php forms work just fine in the past, so I'm not sure what is going on in this case.
/-------------------------------------------------
Receiver's Email
---------------------------------------------------/
$toemails = array();
$toemails[] = array(
'email' => 'laurel@eriksenwebdesign.com', // Your Email Address
'name' => 'Laurel Eriksen' // Your Name
);
/-------------------------------------------------
Sender's Email
---------------------------------------------------/
$fromemail = array(
'email' => 'no-reply@pacificforge.com', // Company's Email Address (preferably currently used Domain Name)
'name' => 'Pacific Forge' // Company Name
);
