* I'm working on a website and want to work with two forms.
* I've installend the CMSMailer module.
1. I create and new page called 'contact'
2. I set the tag "contact_form" in the content field.
{contact_form email="email@domein.com" subject_get_var="Beta Contact Form"}
Now the page/URL "index.php?page=contact"
works and I'm getting email with content/messege in my mailbox.
3. I change the HTML so the look and feel for this page looks beter in a browser: /plugins/function.contact_form.php
And ready I am.
**********************
Now I want to create a second contact form with more than just the input fields: email, name, subject, messege.
I want to add: Adress, CustomerID, Productname, ect etc.
1. I create and new/second page called 'recept'
2. I set the tag "recept_form" in the content field.
{recept_form email="email@domein.com" subject_get_var="Beta Recept Form"}

3. I duplicated /plugins/function.contact_form.php and renamed it to /plugins/function.recept_form.php

/plugins/function.recept_form.php:

Now the "index.php?page=recept" seems to work fine, I see all the input field in my browser.
4. Now when I do a submit, I get an empty e-mail and also my search does not work anymore...
Questions:
A: How can I make two contact pages?
B: Do I have to duplicate /plugins/function.contact_form.php and rename it to /plugins/function.newname_form.php
and put the tag {newname_form} in my content field in a new page?
I hope you can help me out, I've been trying for weeks now, and can't get it right..
**********************
UPDATE
**********************
Trying out the "FeedbackForm module"
Hope that will be the solution to my problem.