Results 1 to 5 of 5

Thread: Form won't send to my e-mail

  1. #1
    Junior Member
    Join Date
    Mar 2012
    Posts
    2

    Default Form won't send to my e-mail

    I have a form on my page, you can fill in the info and hit submit, everything is fine (No errors) but I NEVER receive an e-mail with the info. Any suggestions?

  2. #2
    Senior Member 1FugleyKiwi's Avatar
    Join Date
    Jan 2011
    Location
    Playford Waters, South Australia
    Posts
    476

    Default

    All I can say is you haven't configured the form correctly, but without something to look at, I cannot offer a suggestion to solving your problem.

  3. #3
    Junior Member
    Join Date
    Mar 2012
    Posts
    2

    Default

    Here is the code I'm using
    <form name="Text8FORM" action="" method="post">

    <form id="emf-form" enctype="multipart/form-data" method="post" action="http://www.emailmeform.com/builder/form/156hkYtC1SbDMaUjrIB1" name="emf-form">
    <table style="text-align:left;" cellpadding="2" cellspacing="0" border="0" bgcolor="transparent">
    <tr>
    <td style="" colspan="2">
    <font face="Verdana" size="2" color="#000000"><b style="font-size:20px;">Contact Form</b><br />
    <br /></font>
    </td>
    </tr>
    <tr valign="top">
    <td id="td_element_label_0" style="" align="">
    <font face="Verdana" size="2" color="#000000"><b>Name</b></font> <span style="color:red;"><small>*</small></span>
    </td>
    </tr>
    <tr>
    <td id="td_element_field_0" style="">
    <input id="element_0" name="element_0" value="" size="30" class="validate[required]" type="text" />
    <div style="padding-bottom:8px;color:#000000;"></div>
    </td>
    </tr>
    <tr valign="top">
    <td id="td_element_label_1" style="" align="">
    <font face="Verdana" size="2" color="#000000"><b>Email</b></font> <span style="color:red;"><small>*</small></span>
    </td>
    </tr>
    <tr>
    <td id="td_element_field_1" style="">
    <input id="element_1" name="element_1" class="validate[required,custom[email]]" value="" size="30" type="text" />
    <div style="padding-bottom:8px;color:#000000;"></div>
    </td>
    </tr>
    <tr valign="top">
    <td id="td_element_label_2" style="" align="">
    <font face="Verdana" size="2" color="#000000"><b>Message</b></font> <span style="color:red;"><small>*</small></span>
    </td>
    </tr>
    <tr>
    <td id="td_element_field_2" style="">
    <textarea id="element_2" name="element_2" cols="60" rows="10" class="validate[required]">
    </textarea>
    <div style="padding-bottom:8px;color:#000000;"></div>
    </td>
    </tr>
    <tr>
    <td colspan="2">
    <script type="text/javascript">
    //<![CDATA[
    var RecaptchaOptions = {
    theme: 'clean',
    custom_theme_widget: 'emf-recaptcha_widget'
    };
    //]]>
    </script> <script type="text/javascript" src="https://www.google.com/recaptcha/api/challenge?k=6LchicQSAAAAAGksQmNaDZMw3aQITPqZEsX77l T9">
    </script> <noscript><iframe src="https://www.google.com/recaptcha/api/noscript?k=6LchicQSAAAAAGksQmNaDZMw3aQITPqZEsX77lT 9" height="300" width="500" frameborder="0"></iframe><br />
    <textarea name="recaptcha_challenge_field" rows="3" cols="40">
    </textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge" /></noscript>
    </td>
    </tr>
    <tr>
    <td colspan="2" align="right">
    <input name="element_counts" value="3" type="hidden" /> <input name="embed" value="forms" type="hidden" /><input value="Send email" type="submit" /><input value="Clear" type="reset" />
    </td>
    </tr>
    </table>
    </form>
    <div>
    <font face="Verdana" size="2" color="#000000">Powered by</font><span style="position: relative; padding-left: 3px; bottom: -5px;"><img src=
    "http://www.emailmeform.com/builder/images/footer-logo.png" /></span><font face="Verdana" size="2" color="#000000">EMF</font> <a style="text-decoration:none;" href="http://www.emailmeform.com/"
    target="_blank"><font face="Verdana" size="2" color="#000000">Web Form</font></a>
    </div><a style="line-height:20px;font-size:70%;text-decoration:none;" href="http://www.emailmeform.com/report-abuse.html?http://www.emailmeform.com/builder/form/156hkYtC1SbDMaUjrIB1" target=
    "_blank"><font face="Verdana" size="2" color="#000000">Report Abuse</font></a>

    <p style="margin-bottom: 0px;">&nbsp;</p>



    <p style="margin-bottom: 0px;">&nbsp;</p>



    </form>


    </form>

    Thanks for any help you can give.
    Nick

  4. #4
    Senior Member gotFusion's Avatar
    Join Date
    Jan 2010
    Location
    www.gotHosting.biz
    Posts
    4,529

    Default

    Quote Originally Posted by gvgdvd View Post
    Here is the code I'm using
    <form name="Text8FORM" action="" method="post">
    The action is blank. You have not told the form what to do.

    Are you using the formhandler? Are you using a 3rd party script to process?

    Have you gone over my formshandler tutorial? http://www.gotfusion.com/tutorials/tut.cfm?itemID=4024

    If you are having difficulty you can always use an external forms to email service such as the one outlined in this gotfusion tutorial: http://www.gotfusion.com/tutorials/tut.cfm?itemID=4075
    NetObjects Fusion Cloud Linux enabled Web Hosting, support + training starts at $14.95
    NetObjects Fusion web Hosting and support + ASP + PHP + ColdFusion + MySQL + MS SQL
    FREE NetObjects Fusion Support & training comes with all web hosting accounts
    NetObjects Fusion Web Hosting: http://www.gotHosting.biz

  5. #5
    Allison Moore
    Guest

    Default Re: Form won't send to my e-mail

    Are you using a script for the submission?

    I use the Tectite script (free and highly secure) and it works like a
    charm. There are other scripts available as well.

    Allison

    On 3/24/2012 12:45 PM, gvgdvd wrote:
    > I have a form on my page, you can fill in the info and hit submit,
    > everything is fine (No errors) but I NEVER receive an e-mail with the
    > info. Any suggestions?


Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •