Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
Was just notified by client that she's not getting emails sent to her using the contact form on her website: http://www.realestateoftetonvalley.com/contact

Even though the form says the email has gone though, it never shows up. She's double checked her spam and it's not there either.

Thanks!

Here is the code:
Code: Select all
<cms:form enctype="multipart/form-data" method="post" class="k_form">
   
        <cms:if k_success >
            <div class="k_successmessage">
                <cms:send_mail from=k_email_from to=k_email_to subject='Feedback from your site'>
                    The following is an email sent by a visitor to your site:
                    <cms:show k_success />
                </cms:send_mail>
               
                <h3>Thanks for sending me a message.</h3>
                <p>I'll be in touch with in 24 hours!</p>
                <pre> <cms:show k_success /> </pre>
            </div>
        </cms:if>
       
        <cms:if k_error >
            <div class="k_errormessage">
                <ul>
                    <cms:each k_error >
                        <li><cms:show item /></li>
                    </cms:each>
                </ul>
            </div>
        </cms:if>
           <h1>Email Me</h1>
      <hr />
          <cms:fieldset>
            <cms:input type="text"
                       name="name"
                       label="Name"
                       maxlength="100"                       
                       required='1'
                       validator='min_len=3'/>
                       
            <cms:input type="text"
                       name="email"
                       label='Email'
                       maxlength="100"
                       validator='email'
                       required='1' />

            <cms:input type="textarea" cols="35" rows="5" name="message"
                       required='1'
                       label='Message'></cms:input>
           
            <cms:input type='captcha'
                       name='my-captcha'
                       label='Are you human?'/>
            </cms:fieldset>
           
        <input type="submit" value="Send Email" name="submit"/>
           
</cms:form>
Are you using a local (cPanel/hosting) or remote (Google Apps, etc...) mail exchanger? If remote, then it is very likely https://support.google.com/a/answer/55299 and you need to configure your hosting to use the remote mail exchanger.
Form should be sending the email to just a plain ol' gmail address. No Google Apps involved here.
3 posts Page 1 of 1
cron