MDLarson
Registered
First off, I am not a programmer. So speak slowly so I can understand this stuff. 
I'm trying to setup a feedback form on my wife's website using ColdFusion. You can take a look at the form code in the page, but here's the entire contents of "emailer.cfm":

p.s. I also can use PHP to process this contact form, but I don't know where to start with that. Maybe it's easier? Does anybody have a nice quick example of that?
(edit was to fix link)

I'm trying to setup a feedback form on my wife's website using ColdFusion. You can take a look at the form code in the page, but here's the entire contents of "emailer.cfm":
The problem is that every time I click the submit button, I get an error message; "The specified module could not be found." All 3 files (index.html, emailer.cfm and thank_you.html) are in the same directory, so I shouldn't have any broken links, but I'm sort of lost here.<cfmail to="#form.recipient#" cc="#form.email#" from="#form.email#" subject="ProlificPen.com Inquiry">Contact Name: #form.name#
Email Address: #form.email#
Phone Number: #form.phone#
Company: #form.company#
Address: #form.address#
City: #form.city#
State: #form.state#
Zip Code: #form.zip#
Service: #form.service#
--------------------------------------------------------------
#form.message#
--------------------------------------------------------------</cfmail>
<cflocation url="thank_you.html">

p.s. I also can use PHP to process this contact form, but I don't know where to start with that. Maybe it's easier? Does anybody have a nice quick example of that?
(edit was to fix link)