Email saved in entries tab but not sent as email. 
Posted: 14 February 2008 04:43 PM   [ Ignore ]
Newbie
Rank
Total Posts:  2
Joined  2008-01-16

Hi, this is what I am working with:

{exp:freeform:form form_name="default_template" required="name|email|message" notify="email@gmail.com" template="Contact Form"}
<fieldset class="fieldset">
  <
legend>Contact</legend>

  <
p><label for="name" class="name">Name<span class="required">*</span></label> <input type="text"  id="name" name="name" /></p>

<
p>
   <
label for="email" class="email">E-Mail<span class="required">*</span></label>
   <
input id="email" name="email" />
  </
p>
  <
p>
   <
label for="url" class="url">URL</label>
   <
input id="url" name="url" value="http://" />
  </
p>
  <
p>
   <
label for="message" class="message">Comment, Question, Suggestion<span class="required">*</span></label> </p>
    <
p>
   <
textarea id="message" name="message" ></textarea>
  </
p>
    <
p class="explanation"><span class="required">*</span> designates a required field.</p>

  <
p>
   <
input class="reset" type="reset" value="Reset"/>
   <
input class="submit" type="submit" value="Submit"/>

  </
p>
</
fieldset>
{/exp:freeform:form}

and I can see the submitted entries in under the entries tab in the freeform module, but it is not sending the email.  Any ideas?

Thanks!

Profile
 
 
Posted: 15 February 2008 07:12 AM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  2320
Joined  2006-10-18

zgordon,

You need to make sure you’ve created the notifcation template (if using a custom one)…

Or in this case, it appears you mixed up the Form_Name and Template parameters:

{exp:freeform:form form_name="default_template" required="name|email|message" notify="email@gmail.com" template="Contact Form"}

Should probably be:

{exp:freeform:form form_name="Contact Form" required="name|email|message" notify="email@gmail.com" template="default_template"}

 Signature 
Profile
 
 
Posted: 17 February 2008 08:36 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2008-01-16

Thanks Pie Man!  I switched those two fields and email is working great.  Thanks!

Profile