Form of contact-checkbox PHP coding does not work

I'm a newbie to the design of web pages, so I would be grateful if you could explain me what PHP coding I would need to "Checkbox" and where to place them in the PHP coding below. I can send the form to my email with all topics and filled in the forms with the Yes or no box.

Only problem I have is that the part of the info in the box appear right at the top of the message electronic rather than the "Name", "Such", "Email" etc... Another half of the box appear where it suppose to be wih double position as shown below. I also want to remove the < br > e-mail message. You can also tell me how to change the color for the position so clear sound.

I wrote the code box in BLUE for HTML and PHP coding below. Sorry for the long coding. Look forward to hearing from someone. Very much appreciated.

Message delivered to the email address as received:

Rear ground extension: Yes

Two-storey rear extension: Yes
Two-storey side extension: No
Loft: Yes
New Build: Yes

Other: Yes

Name: Test<br>
Email: [email protected]<br>
Contact No: 87576as<br>
Address1: addy1<br>
Address2: addy2<br>
Town: town<br>
County: county<br>
Postcode: post<br>
Property Type: Cottage<br>
Property Area: None<br>
Message:<br>
test msg

My HTML coding for the form:

< div class = "contact form" >
< form id = "form1" name = "form1" method = "post" action = "test2.php" >
< fieldset >
< legend > < strong privacy > < / strong > < / legend >
< table width = "690" border = "0" >
< b >
< td width = "340" > < p >
< label = 'name' class = "contactLable" > name: < / label >
< input name = "name" type = "text" id = "name" tabindex = "10" size = "30" / >
< /p > < table >
< td width = "340" > < p >
< label = "contact_number" class = "contactLable" > Contact No.: < / label >
< input name = "contact_number" type = "text" id = "contact_number" tabindex = "20" size = "30" / >
< /p > < table >
< /tr >
< /table >
< table width = "690" border = "0" >
< b >
< td > < p >
< span id = "sprytextfield1" >
< label for class = "email" = "contactLable" > Email: < / label >
< input name = "email" type = "text" id = "email" tabindex = "30" size = "30" / >
< span class = "textfieldRequiredMsg" > a value is required. </span > < span class = "textfieldInvalidFormatMsg" > Invalid format. </span > < / span > < /p > < table >
< /tr >
< /table >
< / fieldset >
< fieldset >
< legend > < strong > < facilities > project information < / legend >
< p > < table width = "690" border = "0" >
< b >
< td width = "340" > < p >
< label = "address1" class = "contactLable" > address 1: < / label >
< input name = "address1" type = "text" id = "address1" tabindex = "40" size = "30" / >
< /p > < table >
< td width = "340" > < p >
< label = "address2" class = "contactLable" > address 2: < / label >
< input name = "address2" type = "text" id = "address2" tabindex = "50" size = "30" / >
< /p > < table >
< /tr >
< b >
< td > < p >
< label for class = "City" = "contactLable" > City: < / label >
< input name = "City" type = "text" id = "City" tabindex = "60" size = "30" / >
< /p > < table >
< td > < p >
< label = 'County' class = "contactLable" > County: < / label >
< input name = "County" type = "text" id = "County" tabindex = "70" size = "30" / >
< /p > < table >
< /tr >
< b >
< td > < p >
< label for class = 'postal code' = "contactLable" > postal Code: < / label >
< input name = "PostalCode" type = "text" id = "PostalCode" tabindex = "80" size = "10" / >
< /p > < table >
< td > < table >
< /tr >
< b >
< td > < p >
< label = "propertyType" class = "contactLable" > Type of property: < / label >
< select name = "propertyType" id = "propertyType" tabindex = "90" >
Select < option > please < / option >
Detached < option > < / option >
< option > combined < / option >
< option > end of Terrace < / option >
Mid-terrace < option > < / option >
< option > dish < / option >
Bungalow < option > < / option >
Cottage < option > < / option >
< option > other < / option >
< / select >
< /p > < table >
< td > < p >
< label = "propertyArea" class = "contactLable" > property: < / label >
< select name = "propertyArea" id = "propertyArea" tabindex = "100" >
Select < option > please < / option >
< option > None < / option >
Listed Building < option > < / option >
Conservation Area < option > < / option >
< / select >
< /p > < table >
< /tr >
< /table >
< /p >
< / fieldset > < fieldset > < legend > < strong project Type > < / strong > < / legend >
< table width = "690" >
< b >
< td width = "338" > < label >

< input name = "rearExt" type = "checkbox" class = "contactCheckbox" id = "CheckboxGroup1_0" tabindex = "110" value = "rearExt" / >
Back to the floor extension < / label > < table >
< td width = "340" > < input name = "sideExt" type = "checkbox" class = "contactCheckbox" id = "CheckboxGroup1_1" tabindex = "120" value = "sideExt" / >
Extension of land-side < table >
< /tr >
< b >
< td > < input name = "twoStoreyRear" type = "checkbox" class = "contactCheckbox" id = "twoStoreyRear" tabindex = "130" value = "twoStoreyRear" / >
Extension back double-decker < table >
< td > < input name = "twoStoreySide" type = "checkbox" class = "contactCheckbox" id = "twoStoreySide" tabindex = "140" value = "twoStoreySide" / >
Extension to two-storey side < table >
< /tr >
< b >
< td > < input name = "loft" type = "checkbox" class = "contactCheckbox" id = "loft" tabindex = "150" value = "loft" / >
Loft conversion < table >
< td > < input name = "new construction" type = "checkbox" class = "contactCheckbox" id = "new construction" tabindex = "160" value = "newBuild" / >
New construction < table >
< /tr >
< b >
< td > < input name = type 'flat' = "checkbox" class = "contactCheckbox" id = "flat" tabindex = "170" value = "flat" / >
Flat conversion < table >
< td > < input name = "other" type = "checkbox" class = "contactCheckbox" id = "other" tabindex = "180" value = "other" / >
Another conversion < table >
< /tr >
< /table >
< / fieldset >
< fieldset > < legend > < Message > < / strong > < / legend >
< p >
< label for the class = "message" = "contactLable" > your Message or comments: < / label >
< name textarea = 'message' id = cols "message" = "45" lines = "5" tabindex = "190" > < / textarea >
< /p >
< / fieldset >
< br / >
< input type = "submit" name = "Submit" id = "Submit" value = "Submit" tabindex = "200" / >
< / make >
< / div >

PHP code to send to my email:

< ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""
" < html xmlns =" http://www.w3.org/1999/xhtml ">
< head >
< meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"
< META HTTP-EQUIV = "refresh" content = "0; URL = thankyou.html">
< title > < /title > E-mail form
< / head >

< body >
<? PHP
$name = addslashes($_POST['name']);
$contact_number = addslashes($_POST['contact_number']);
$email = addslashes($_POST['email']);

$address1 = addslashes($_POST['address1']);
$address2 = addslashes($_POST['address2']);
$town = addslashes($_POST['town']);
$county = addslashes($_POST['county']);
$postcode = addslashes($_POST['postcode']);

$propertyType = addslashes($_POST['propertyType']);
$propertyArea = addslashes($_POST['propertyArea']);

$rearExt =($_POST['rearExt'])? "" Back to the floor extension: Yes ': "" back to the floor extension: No. ";"
$sideExt =($_POST['sideExt'])? "' Land extension side: Yes": "' land extension side: No."; "
$twoStoreyRear =($_POST['twoStoreyRear'])? "" Two-storey rear extension: Yes ': "" extension back to two floors: No. ";"
$twoStoreySide =($_POST['twoStoreySide'])? "" Two-storey side extension: Yes ': "" extension aside two floors: No. ";"
$loft =($_POST['loft'])? "" Loft: Yes ":" ' Loft: No. ";"
$newBuild =($_POST['newBuild'])? "" New generation: Yes ': "" new generation: No. ";"
$flat =($_POST['flat'])? "' Dish: Yes": "' dish: No."; "
$other =($_POST['other'])? "" Others: Yes ': "" others: No. ";"
other $msg.="\n$rearExt\n$wsideExt\n$twoStoreyRear\n$twoStoreySide\n$loft\n$newBuild\n$wflat\n$;


$message = addslashes($_POST['message']);

You can specify which email you want your contact form to be emailed here

$toemail = " " [email protected] "; "
$subject = "of the Web site test."

$headers = "MIME-Version: 1.0\n.
." From: \"".$name. » \ » < ". $email. "" > \n ".
." Content-type: text/html; charset = iso-8859-1\n ";

$body = "name:". " $name. "" < br / > \n ".
." E-mail: '. '. $email. "" < br / > \n ".
." Contact No.: ".." $contact_number. "" < br / > \n ".

." Address1: ".." $address1. "" < br / > \n ".
." Address2: ".." $address2. "" < br / > \n ".
." City: ".." $town. "" < br / > \n ".
." County: '. '. $county. "" < br / > \n ".
." Postal code: ".." $postcode. "" < br / > \n ".

." Property type: ".." $propertyType. "" < br / > \n ".
." Property: ".." $propertyArea. "" < br / > \n ".

. "Back to the floor extension:". " $rearExt. "" < br / > \n ".
." Land extension side: ".." $sideExt. "" < br / > \n ".
." Two-storey rear extension: ".." $twoStoreyRear. "" < br / > \n ".
." Two-storey side extension: ".." $twoStoreySide. "" < br / > \n ".
." Loft conversion: ".." $loft. "" < br / > \n ".
." New generation: ".." $newBuild. "" < br / > \n ".
." Dish: ".." $flat. "" < br / > \n ".
." Other: ".." $other. "" < br / > \n ".


." "Message: < br > \n".
. $message;

If (! ereg ("^ [a-zA-Z0-9_] + @[a-zA-Z0 - 9-] + \.")) [a-zA-Z0 - 9-------.] + $"(, $email))"
{
echo "is not a valid email address.  "Please return to the.
. "previous page and try again. ';
"exit";
}

mail ($toemail, $subject, $body, $msg, $headers);
echo "thank you for your comments";
? >
< / body >
< / html >

This topic has been moved to the Dreamweaver application development forum, which deals with PHP and other issues aside server.

I don't know where you got your PHP script, but it's bad writing. The reason why you get no results from the boxes because the script does not add to the body of the e-mail message and submits them to the mail() function in the argument which must contain the headers. This also explains why
is in the email, because the HTML header is in the wrong argument.

Remove all variables of the addslashes() function assignments. For example:

$name=addslashes($_POST['name']);

must be:

$name = $_POST['name'];

The code to get the results of the check box should look like this ("isset" insert):

$rearExt = isset($_POST['rearExt'])?"Rear ground extension: Yes":"Rear ground extension: No";

Change the following line:

$msg.="\n$rearExt\n$wsideExt\n$twoStoreyRear\n$twoStoreySide\n$loft\n $newBuild\n$wflat\n$other";

to do this:

$msg = "$rearExt
\r\n$wsideExt
\r\n$twoStoreyRear
\r\n $twoStoreySide
\r\n$loft
\r\n$newBuild
\r\n$wflat
\r\n";

Headers should look like this:

$headers = "MIME-Version: 1.0\r\n
            From: $name <" . $email . ">\r\n
            Content-type: text/html; charset=iso-8859-1";

Each line in the body of the message should be followed by a return character and line transport, not only a new line character. In addition, because you use double quotes, you need not to keep opening and closing them. Variables can be placed in quotes. The first lines should look like this:

$body = "Name: $name
\r\n Email: $email
\r\n Contact No: $contact_number
\r\n

The final closing quotes come at the end of the $body statement, which should include the values of your boxes like this:

        Other: $other
\r\n $msg Message:
\r\n $message";

The line that sends your email should look like this:

 mail($toemail, $subject, $body, $headers);

There are other improvements that could be made to the script, but the ones I listed should solve your problems.

If you are interested in learning how to properly use PHP, you might like to take a look at my book, PHP Solutions, 2nd edition. Among other things, it shows you how to create a much friendlier e-mail form which verifies the required fields and preserves user input, if errors are found.

Tags: Dreamweaver

Similar Questions

  • Please give me an email address or other means of contact. my creative cloud does not work. I need support and adobe Web site does give no support

    Please give me an email address or other means of contact. my creative cloud does not work. I need support and adobe Web site does give no support

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

  • Is it possible to return to the synchronization of the former in Firefox, as new synchronization does not work.

    As new synchronization does not work for me, despite the setting it in total compliance with the Mozilla Web site and no one took the trouble to answer the previous post today, is it possible to return to the synchronization of the former?

    To the best of my knowledge, the synchronization of the former is no longer available.

    If you post some details on the problems you are having with the sync, we can try to solve your problem.

  • Contacts from blackBerry Smartphones does not work after software update

    Anyone else having problems with their Contacts button? I installed the updated software version yesterday morning and now whenever I click on Contacts, I get a message saying that "Unfortunately, has stopped Contacts" and the only option I had was to report this to crash the first time; now, I can only choose "OK". I tried to restart my phone, but it did make a difference.

    He worked before that, I only left a micro-SIM with my Z10 to a nano-SIM for the Priv Monday night (4th) and started using it yesterday (5th) whole and I me join and links contacts before this happened.

    Any help would be appreciated.

    sdgardne wrote:
    Since you are now in the hands of a formal technical support, we will be back here. But the volunteers here will of course be very grateful for your report of your final results.

    See you soon!

    Hi everyone, just a quick update: it turns out that it's a problem/bug BlackBerry already know and are trying to solve. There was an update from 01/09/16 for the Contacts app, but it doesn't seem to work when I installed the update. Workaround that I was advised to use in the meantime is as follows:

    • Deselect auto-updated option on Play store -in the game store, tap 3 horizontal lines in the 'search' box to set up your account > settings > auto-update apps > not auto-implementation update app
    • Contacts to revert to the version of factory default - settings > Apps > select Contacts and then:
    1. Click on clear Cache
    2. Press Force
    3. Press on uninstall updates
    4. Press OK when you are prompted to do so
  • .click on line works with php table - does not work with javascript array.

    Howdy,

    I met a very interesting problem today, and I hope that you will be able to help me.

    I have a page in which the upper part is php to read a table from the server and display the table, that the html page is under construction.

    Find data in a table, and each row is clickable, which click on move the user to another page, that is based on the selected line.

    Here are the relevant parts of the php code:

    -------------------------------------------------------------------------------------

    <? PHP

    echo "< id of the table = 'patienttable" cellpadding = 5px border = 0-size of police = 16px > ';

    echo "< tr > < th ="30"width >". "ID #". ". "" < /th > < th = "100" width >. "Family name". " "" < /th > < th = "100" width >. "" Name"". "< /th > < th ="100"width" > "."

    "Middle name". "" < /th > < th = "80" width >. "" DOB ". "" < /th > < th = '50' width >. """" Zip"." < /th > < th = '50' width >". "' Gender '. "" < /th > < th = "100" width >.

    'Phone '. "< /th > < /tr >";

    While ($row = mysqli_fetch_array ($result))

    {

    blah blah blah

    echo "< tr > < td = 'localid' id >". " $localid. "< table > < td >. $lastname. "< table > < td >. $firstname. "< table > < td >. $middlename. "< table > < td >". " $dob. "< table > < td >". " $physzip. "< table > < td >. $gender. "< table > < td >". " $phone1.       "< table > < /tr >";

    }

    echo "< / table >";

    ? >

    ------------------------------------------------------------------------------------------ ------------

    And here is the code to a click on a line:

    ------------------------------------------------------------------------------------

    $("#patienttable_tr").click (function () {}

    var passthis = $(this).find("#localid").html ();

    .post $("php/setsessionvariable.php",)

    {sessionval: passthis},.

    function {window.location.href = "root.php"}

    );

    });

    ------------------------------------------------------------------------------------------ -----------------

    EVERYTHING works fine - no problem - works now for about 2 months.

    Today, I started to build something similar, BUT! I can't read the data base at the top of the page, I have to do an ajax request, call the db and display the data in a table;

    This is annoying, fairly simple javascript code:

    ------------------------------------------------------------------------------------------ --------------

    $.ajax({)

    type: 'POST',

    URL: "findpatientbackend.php",

    data: {letterslastname: lastname},.

    data type: 'json ',.

    success: {function (result)}

    $("#div1").html("");

    If (result.length > = 1).

    {var output = "";}

    $("div1").html ("< id of the table =" findtable">" ");

    $(résultat, fonction (index, value) {} .each)

    output += '< tr > < td width = "100px" > < table > < id td 'localid' width = '100px' = > '.

    + value.localid + '< table > < td width = "100px" > ".

    + value.lastname + '< table > < td width = "100px" > ".

    + value.firstname + '< table > < td width = "100px" > ".

    + value.middlename + '< table > < td width = "100px" > ".

    + value.dob + '< table > < /tr > ";

    });

    $("#div1").html (output);

    $("div1").html ("< /table >");

    }

    },

    error: function() {alert ("error on the return") ;}}

    });

    ------------------------------------------------------------------------------------------ -----------

    And here's the code click on lines, almost IDENTICAL to the above:

    ------------------------------------------------------------------------------------------ -----------

    $("#findtable_tr").click (function () {}

    var passthis = $(this).find("#localid").html ();

    .post $("php/setsessionvariable.php",)

    {sessionval: passthis},.

    function {window.location.href = '... / root.php'}

    );

    });

    ------------------------------------------------------------------------------------------ -------------

    All of the "stuff" loading on the page very well, BUT it absolutely nothing happens when I click on a line.

    Playing around this afternoon, I did a "View Source" on the two pages and saw something VERY interesting;

    1. the table written in PHP is present, can be seen and thus is "clickable".click on jquery function.

    2 - the table is written in javascript is INVISIBLE! I do not see in the source view (but I can see it on the screen) and as a result .click function on he can't see either.

    Issues related to the:

    1. How can I make the table written in javascript 'clickable' - how can I do the 'visible javascript array '?

    2 would it be the use of '.html' show table to the div? Is there another way?

    And again, I thank you in advance for any help.

    Sounds like a question of 'timing', i.e. you bind the click event tothe elements that don't exist - they do not exist because the AJAX call is not yet complete.

    You can use jQuery . on() (previously . live()) method to bind events to the elements 'the future '.

    Another option is to bind the click after the AJAX event is done and the

    is drawn.

    I guess even one other option is to ask the JSON in PHP so that the

    is called before the page is delivered.

    Moreover, we see items created by JavaScript using 'View Source '. Use Firebug or Chrome/Safari "inspect element".

    --

    Kenneth Kawamoto

    http://www.materiaprima.co.UK/

  • Test PHP site does not work

    Hello

    I did this tutorial http://www.adobe.com/devnet/dreamweaver/articles/setting_up_php.html listed in the FAQ of the forum page.

    I followed the instructions:

    * MAMP installed and configured on my Mac OS X.

    * Make sure that the pre-installed Apache web server wasn't already on my computer.

    * Set up a PHP site in Dreamweaver.

    * Check that everything had been set up properly by creating a PHP page. I used the script <? PHP phpinfo();? > so that my Web page just displays the PHP configuration information.

    When I clicked on "Live View" in Dreamweaver to display my Web page it was nothing, just a white screen.

    I Redid the tutorial just to make sure I don't have any errors, but still I get only a blank page.

    Help, please!

    Thank you

    Erin.

    erinlc wrote:

    Oh sorry... don't think you got the points you deserve for giving me the right answer. Not sure why it happened.

    Erin

    Da Ding Dang Doodle!

    I'm celebrating here too...

    I remember when I first put in place a test thingy on my PC.  I felt so out of my depth, it was as if I had learned Spanish to take a holiday in Tibet or something (they speak Spanish in Tibet do?).

    Martin

  • contact customer service link does not work

    It indicates that the service is unavailable, whenever I click on the link to try and get intouch with them.

    not to mention cleeeeearly im not the only one having this problem according to the forum. It's beyond rediculus. No one can get help and what I understand, when they finally get through, it's someone who can barely speak English. I think I'll just show one of my evouluant friends all the posts about this problem and they are running a story. Good luck

  • Submit the form of web publishing app point does not work

    Hi guys, I have a web form application point that I put on an edit page. I dynamically add the itemID/OID of the web application element that I want edited in the src of the form. When I submit the form, I get a thank you page that thank me to add a new item (it's an editing tool) and when I check the web application part nothing has changed! What is going on? On the flipside, I went to the Web page change app point by clicking on the link generated by BC and when I submit that form, I get the same exact page thank you, but this time, the changes stick. How can I get my form to work? Thank you guys!



    $('#webAppForm').attr ('src','/ CustomContentProcess.aspx?) A = EditSave & amp; CCID = 21437 & amp; OID = "+ itemID +" & amp; OTYPE = 35');

    This is the code used to change the src and then I don't

    $('#webAppForm').submit () to submit.

    FEC

    There is no attribute "src" on a form.  I think you need to change the 'src' in 'action '. DOH!  Also, I am sure you know this, but make sure that the user is logged when you try to send this form, so don't forget this form is in a secure area.

  • defaultCommand and initialFocusId does not work!

    The defaultCommand on af:form and initialFocusId on af:document does not work in ADF Faces (alt at least for me)!

    It works for someone else?

    It's functionality, without that we cannot do!

    Johnny

    Hello

    the initial focusId is a bug that is already ranked. DefaultCommand default is not indicated that I can see. So aircraft are it is another problem of follow-up

    Frank

  • PHP contact form does not work

    I created my page using godaddy but my php contact form does not work. When sending a message, he won't have to the sent Message (su message to ha enviado) page, but it is not actually send any mails. The accounts are set up, but it does not work. The web page is cuysrus.com, the contact form is on the contact page.

    This is the code I used for the php class linked to the html file:

    <? PHP

    $to = " [email protected] "; "

    $subject = 'new message ';

    $nombre = $_POST ['number'];

    $apellido = $_POST ['apellido'];

    $message = $_POST ['message'];

    $headers = "from: ". " [email protected] \n";

    $headers. = "X-Mailer: PHP /'." phpversion();

    $headers. = "MIME-Version: 1.0\r\n";

    $headers. = "content-Type: text/html;" charset = iso-8859-1\n ";

    $retval = mail ($to $subject, $message, $headers);

    If ($retval == true) {}

    echo "message Su will ha enviado.

    } else {}

    echo "Vuelva a intentarlo.

    }

    ? >

    Well sorry that I forgot to ask about the action of form... you will need to rework this if you do not have to use the form of godaddy.

    a few things... first of all, you have the transformation code in the page, if you want that your action forms literally go anywhere.  ' change action = "? »

    Second, you'll need a 'trigger' in the form must be added a hidden as field

    Thirdly, finally, you have this block of code that I rewrote the process, if there is a request for 'process' then here is the code:

    <>

    form of process

    If (@$_REQUEST ['process']) {}

    $headers = "from: [email protected] \n";

    $to = "[email protected]";

    $subject = 'new message ';

    $body = "number:". "" $_REQUEST ['number']. »

    Apellido: ".." $_REQUEST ['apellido']. »

    Message: ".." $_REQUEST ['message']. »

    ";

    $retval = mail ($to $subject, $body, $headers);

    If ($retval == true) {}

    echo "message Su will ha enviado.

    } else {}

    echo "Vuelva a intentarlo.

    }

    }

    ?>

  • Contact the Forum does not work on the accommodation of third party (former title now

    I created a site in muse with a simple contact form. When I write the site to a third party host the email filed does not work unless I use my creative cloud email any other email gives me a "the server has encountered an error" when the submit button

    erroer.jpg

    Work with your hosting provider.

    Something is change the generated files from Muse.

    There is more information on troubleshooting the forms here <> .

    The script form_check.php on your site returns the following:

    This strongly implies that something changes the generated files from Muse.

    This page should contain display three lines of text, where at least the first two have green check marks indicating PHP and a sender are configured correctly (as far as Muse can tell). The third green check mark or a red x can be ignored. It refers to SQL, which is optional. The form will work without it.

  • you want to know why my email address does not work in my muse contact form widget?

    Hello:

    You want to know why my email address does not work on my muse contact form widget?

    Captura de pantalla 2015-09-15 a la(s) 13.10.48.png

    Hi Omar,.

    Please see: Troubleshooting Muse form used on the servers of third party Widgets

    Kind regards

    Akshay

  • My contact form does not work, not even in business catalyst

    My contact form does not work, not even in BusinessCatalyst, need help so I need to work, my BusinessCatalyst site is http://foodtrucksdecolombia.BusinessCatalyst.com and it works in my own server which is www.foodtrucksdecolombia.com need

    I see what you mean now. Seems to be a problem with your phone field. Did you by chance change the email for a field phone field? I see that you do not have a field of electronic mail and an email field is required for the form to work. If I add an email to the contact number field, it works fine.

  • My 'contact' form does not work.  When I send a contact test she returned to my adobe email account this: 'Contact form' has a new form submission.

    My 'contact' form does not work.  When I send a contact test he returned this to my adobe email account:

    'Contact form' has a new form submission.

    What does not work exactly? As you said form submission notification is received in your e-mail account, so process form working I think but you want the notifications to go to another e-mail account, I think.

    Have you added the email address in the field "Email to" in shape options? If Yes and then also you do not receive the form, then please give me the url of the site and post a screenshot or a form with the open option box.

    Thank you

    Sanjit

  • Contact widget form does not work.

    Contact widget form does not work. No message sent or received. Ordinary e-mail works fine. Site hosted by GoDaddy officially transferred in British Colombia. E-mail still hosted by GoDaddy. I set up correctly and changed the name servers. How can I solve the problem? I sent many messages to test through the widget. I get no email sent me. The button send the form only blackens, but nothing else happens

    Hi Alex,

    I guess that you are talking about the autoresponder email, which is sent to the sender of the form. The reason is 'Autoresponder send e-mail' is disabled on your form. To activate it, please log into the administration panel of your site, navigate to Site Manager > Web forms > open the form in question > autoresponder click email button and check the box "send email autoresponder".

    @Andiesam2004 > is the same with your site too.

    Kind regards

    Aish

Maybe you are looking for