webform

Drupal Webform email receipt

I'm trying to set up an email receipt to send to the user who fills out the form. I'm using Webform 6.x-3.1. On this help page for Webform "admin/help/webform" it hints at that function by stating this "Once finished adding fields, you may want to send e-mails to administrators or back to the user who filled out the form. Click on the Em...

drupal Webform HTML Email hooks

I'm trying to send a thank you email to the user submitting the form in HTML. I found out by using a hook in my template.php file like this works to set the header correctly: function mythemename_webform_mail_headers($form_values, $node, $sid) { $headers = array( 'Content-Type' => 'text/html; charset=UTF-8; format=flowed; delsp=y...

drupal Webform select list empty first value

I need for my select lists to have a default option of an empty value, or "Select" with no value. I don't see any mention of how to do this in the documentation. // $Id: webform.module,v 1.196.2.47 2010/08/16 17:54:19 quicksketch Exp $ Thanks ...

Drupal Webform Validation (webform_form_alter)

Hey all, I'm doing some webform validation using webform_form_alter. I'm using webform_form_alter because I switch certain content on a "select" field. In my webform-form-317.tpl.php I defined new fieldsets I set my fields into this new fieldset and unset the original from the webform. $form['submitted']['ContactInfo'] = array( '#type...

Drupal 6 - Webform integration with Experian QAS (Address lookup)

Hi, I'm looking to create a form solution for my client; but rather than code it completely from scratch I thought I'd try and hook into the Drupal Webform module. I think this will be fairly easy for the client to get to grips with as they are already administrating blocks, pages and other custom content types. However, the big unknown...

asp.net mvc and webforms shared authentication

I have few websites based on the WebForms and one based on MVC. All websites have the same settings for forms authentication in web config. The problem is that once logged in to WebForms website, I have to re-login for MVC websites, but when I log out from MVC website, I am automatically logged out from WebForms websites. How can I pas...

How to force single line in a HTML textarea element?

Is there a way to make a HTML textarea element to allow only one line? I want to do this because I will have a button to expand it, but if user is allowed to enter multiple lines when the textarea is not expanded (only 1 row) it doesn look very nice, and if I use a textbox for the not expanded state, it looks weird when I replace it wit...