I have been playing around with ChronoForms most of the day. I thought I was getting the hang of things but now I am not so sure. I tried creating a basic Feedback form first.
Comments
Checkbox field if they want to be contacted
Name
Email Address
Captcha
Submit / Reset
I am happy with the way it displays (although I would like to see a RED * next to the fields that are required and I don't see how to do that), but I am not getting a response back. I did get one, but I must have changed something because I am getting nothing back now and I have tried two completely different email addresses. You can find a sample of the form here:
http://www.zimmernutrition.com/index.php/about-drz/feedback
Next, I have at least two other types of forms I need to create but I want to make sure the basic form is at least working before I invest the time in creating the other forms.
Other Forms I need include:
A form where all they need to enter is an email address. A response email will be sent with a PDF attachment of the requested book. (Tried this but this too doesn't work) Right now we have 10 booklets and I have created 10 forms (with a different Joomla extension) but I am not happy with the time it takes to process their form which is why I want to switch. Ideally, I would like to reduce the number of forms down to one. If that would work, I could see two fields, the email field and a drop down field that would list each protocol booklet. Upon submitting the form, it should send them a confirmation email along with the booklet requested in the drop down menu. Is this possible? Is there a sample form I can look at? I know I will need extra code to make the attachment part work. I found the following code in the forum.. but it didnt work. (Maybe because I cant even get the initial confirmation email, I am not sure.)
The other form we would like to do is allow a person to fill out our intake form online and it would then be emailed to our office for entry into our system BEFORE the patient arrived. The only concern I have is because this is a doctors office we have to find a way to encrypt the data. Is there a way to make sure the forms are encrypted or under an SSL?
Finally, I would also like to see it store the email addresses of those people that requested the protocols. We offer specials from time to time and this allows us to email the specials to all of our potential customers. I am familiar enough with PHPAdmin to grab the info from there so I thought the database connect might work but seeing how I cant get a basic form to work, I figured I should try to figure that out first.
Just to let you know, I did go through the five PDF tutorials and since it doesn't really go through all the various tabs, I wasnt sure where I had made my mistake. Is there something that takes you through all of the options on the different tabs?
Thank you for your time.
Kim Huff
**NOTE** I just tried the demo form after I changed the emails. I received the email as the person filling out the form but I didnt receive the message as the owner of the website.
Comments
Checkbox field if they want to be contacted
Name
Email Address
Captcha
Submit / Reset
I am happy with the way it displays (although I would like to see a RED * next to the fields that are required and I don't see how to do that), but I am not getting a response back. I did get one, but I must have changed something because I am getting nothing back now and I have tried two completely different email addresses. You can find a sample of the form here:
http://www.zimmernutrition.com/index.php/about-drz/feedback
Next, I have at least two other types of forms I need to create but I want to make sure the basic form is at least working before I invest the time in creating the other forms.
Other Forms I need include:
A form where all they need to enter is an email address. A response email will be sent with a PDF attachment of the requested book. (Tried this but this too doesn't work) Right now we have 10 booklets and I have created 10 forms (with a different Joomla extension) but I am not happy with the time it takes to process their form which is why I want to switch. Ideally, I would like to reduce the number of forms down to one. If that would work, I could see two fields, the email field and a drop down field that would list each protocol booklet. Upon submitting the form, it should send them a confirmation email along with the booklet requested in the drop down menu. Is this possible? Is there a sample form I can look at? I know I will need extra code to make the attachment part work. I found the following code in the forum.. but it didnt work. (Maybe because I cant even get the initial confirmation email, I am not sure.)
<?php
$form_id = $MyForm->formrow->id;
$MyUploads =& CFUploads::getInstance($form_id);
$MyUploads->attachments[] = 'images/stories/docs/ChronicFatigue.pdf';
?>
The other form we would like to do is allow a person to fill out our intake form online and it would then be emailed to our office for entry into our system BEFORE the patient arrived. The only concern I have is because this is a doctors office we have to find a way to encrypt the data. Is there a way to make sure the forms are encrypted or under an SSL?
Finally, I would also like to see it store the email addresses of those people that requested the protocols. We offer specials from time to time and this allows us to email the specials to all of our potential customers. I am familiar enough with PHPAdmin to grab the info from there so I thought the database connect might work but seeing how I cant get a basic form to work, I figured I should try to figure that out first.
Just to let you know, I did go through the five PDF tutorials and since it doesn't really go through all the various tabs, I wasnt sure where I had made my mistake. Is there something that takes you through all of the options on the different tabs?
Thank you for your time.
Kim Huff
**NOTE** I just tried the demo form after I changed the emails. I received the email as the person filling out the form but I didnt receive the message as the owner of the website.