Cfmail loops back to original form document yet not sending email.

I had produced a form to be emailed. after one finishes the form and press submit it loops back top the form again, yet i do not get an email. Doen anyone know why this is happening? Below is the code for the original form and below that is code to my action page... Any suggestions would be welcomed..
FORM ORIGINAL CODE
<cfquery name="select_ministry" datasource="ministry9">
SELECT ministry.ministry
FROM ministry
ORDER BY ministry.ministry
</cfquery>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "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" />
<title>Untitled Document</title>
<style type="text/css">
<!--
@import url("CSS/event_Req_Label.css");
-->
</style>
</head>
<body>
<!--- Begin ColdFusion Form --->
<cfform name="Event_Request" action="EventRequestSend.cfm" method="post" >
<strong>Event Contact</strong><br />
<br />
  <span class="eventReq_label">First Name:</span>
                    <cfinput
                    type="text"
                    name="First_Name"
                    message="Please enter your First Name..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Last Name:</span>
                      <cfinput
                    type="text"
                    name="Last_Name"
                    message="Please enter your Last Name..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Phone:</span>
                      <cfinput
                    type="text"
                    name="Phone"
                    message="Please enter your Phone Number..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Email:</span>
                      <cfinput
                    type="text"
                    name="Email_Address"
                    message="Please enter your Email Address..."
                    required="yes" class="event_Request_Box"
                    size="30">
                    </span><br />
                      <br />
                    <br />
                      <strong>About Event/Program</strong><br />
                    <br />
                      <span class="eventReq_label">Event Title:</span>
                      <cfinput
                    type="text"
                    name="Event_Title"
                    message="Please enter the Name of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <br />
                      <span class="eventReq_label">Ministry: </span>
                           <select name="select_ministry" size="1" class="event_Request_Box">
                             <cfoutput query="select_ministry">
                               <option value= "#select_ministry.Ministry#" <cfif (isDefined("select_ministry.Ministry") AND select_ministry.Ministry EQ select_ministry.Ministry)>selected</cfif>>#select_ministry.Ministry#</option>
                             </cfoutput>
                             </select>
                           <br />
                      <span class="eventReq_label">Event Description:</span>
                      <cftextarea name="Event_Description" cols="40" rows="10" label="Event_Description" required="yes" class="event_Request_Box" id="Event_Description" message="Please Enter a description for the event." tooltip="Please Describe the event in 75 words or less." enabled="no" value="Event_Description" maxlenght="75"></cftextarea>
                      <br />
                      <span class="eventReq_label">Event Date:</span>
                      <cfinput
                    type="text"
                    name="Event_Date"
                    message="Please enter the Date of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Event Time:</span>
                      <cfinput
                    type="text"
                    name="Event_Time"
                    message="Please enter the Time of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Address:</span>
         <cfinput
                    type="text"
                    name="Event_address"
                    message="Please enter the Address of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                    <br />
                      <span class="eventReq_label">Address 2:</span>
                      <cfinput
                    type="text"
                    name="Event_address_2"
                    message="Please enter the Address of the Event..."
                    required="no" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">City:</span>
                      <cfinput
                    type="text"
                    name="Event_City"
                    message="Please enter the City of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">State:</span>
                      <cfinput
                    type="text"
                    name="Event_State"
                    message="Please enter the State of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Zipcode:</span>
                      <cfinput
                    type="text"
                    name="Event_Zip_code"
                    message="Please enter the Zip Code of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Admission Cost:</span>
                      <cfinput
                    type="text"
                    name="admission_Cost"
                    message="Please enter the cost of admission for the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                    <br />
                    <input type="submit" name="Submit" class="submit" value="Submit">
                    <br />
                    <br />
         <!--- End ColdFusion Form --->
                    </cfform>
</body>
</html>
FORM ACTION PAGE CODE
<!--- Add cfparams to prevent errors on the page --->
<cfparam name="Event_Request.First_Name" default="">
<cfparam name="Event_Request.Last_Name" default="">
<cfparam name="Event_Request.Phone" default="">
<cfparam name="Event_Request.Email_address" default="">
<cfparam name="Event_Request.Event_title" default="">
<cfparam name="Event_Request.select_ministry" default="">
<cfparam name="Event_Request.Event_Description" default="">
<cfparam name="Event_Request.Event_Date" default="">
<cfparam name="Event_Request.Event_Time" default="">
<cfparam name="Event_Request.Event_address" default="">
<cfparam name="Event_Request.Event_address_2" default="">
<cfparam name="Event_Request.Event_City" default="">
<cfparam name="Event_Request.Event_State" default="">
<cfparam name="Event_Request.Event_Zip_code" default="">
<cfparam name="Event_Request.admission_Cost" default="">
<!--- Create an empty error string --->
<cfset strError = "">
<!--- If the form is submitted --->
<cfif isDefined("Event_Request.Submit")>
<!--- If the First Name field is empty --->
    <cfif Len(Trim(Event_Request.First_Name)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter your First Name...<br>">
    </cfif>
<!--- If the Last Name field is empty --->
    <cfif Len(Trim(Event_Request.Last_Name)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter your Last Name...<br>">
    </cfif>
    <!--- If the Phone field is empty --->
    <cfif Len(Trim(Event_Request.Phone)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter your Phone Number...<br>">
    </cfif>
    <!--- If the Email field is empty --->
    <cfif Len(Trim(Event_Request.Email_address)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter your Email Address...<br>">
    </cfif>
    <!--- If the Event_title field is empty --->
    <cfif Len(Trim(Event_Request.Event_title)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the Name of the Event...<br>">
    </cfif>
<!--- If the select_ministry is empty --->
    <cfif Len(Trim(Event_Request.select_ministry)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please select the ministry...<br>">
    </cfif>
<!--- If the Event_Description is empty --->
    <cfif Len(Trim(Event_Request.Event_Description)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "please include your description...<br>">
    </cfif>
<!--- If the Event_Date is empty --->
    <cfif Len(Trim(Event_Request.Event_Date)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the date of your program...<br>">
    </cfif>
<!--- If the Event_Time is empty --->
    <cfif Len(Trim(Event_Request.Event_Time)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the Time of your program...<br>">
    </cfif>
<!--- If the Event_address is empty --->
    <cfif Len(Trim(Event_Request.Event_address)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the address of your program...<br>">
    </cfif>
<!--- If the Event_City is empty --->
    <cfif Len(Trim(Event_Request.Event_City)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the city of your program...<br>">
    </cfif>
<!--- If the Event_State is empty --->
    <cfif Len(Trim(Event_Request.Event_State)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the state of your program...<br>">
    </cfif>
<!--- If the Event_Zip_code is empty --->
    <cfif Len(Trim(Event_Request.Event_Zip_code)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the zipcode of your program...<br>">
    </cfif>
<!--- If the admission_Cost is empty --->
    <cfif Len(Trim(Event_Request.admission_Cost)) LT 1>
        <!--- Add this to the error string --->
        <cfset strError = strError & "Please enter the Admission Cost of your program...<br>">
    </cfif>
<!--- If the form was not submitted --->
<cfelse>
    <!--- Send the user to the form page --->
    <cflocation addtoken="no" url="Event_Request.cfm">
</cfif>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Response Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
@import url("CSS/event_Req_Label.css");
-->
</style>
</head>
<body>
<!--- If the error string is still empty show the results --->
<cfif strError EQ "">
    <p>Thank you for submitting the Event Request form.</p>
    <p>You submitted the following information:</p>
    <cfoutput>
        <p>    First Name:     #Trim(EVENT_REQUEST.First_Name)#<br><br>
            Last Name:     #Trim(EVENT_REQUEST.Last_Name)#<br><br>
                  Phone:         #Trim(EVENT_REQUEST.Phone)#<br><br>
            Email:         #Trim(EVENT_REQUEST.Email_Address)#<br><br><br><br>
            Event Title:     #Trim(EVENT_REQUEST.Event_Title)#<br><br>
            Ministry:     #Trim(EVENT_REQUEST.select_ministry)#<br><br>
            Description:     #Trim(EVENT_REQUEST.Event_Description)#<br><br>
            Event Date:     #Trim(EVENT_REQUEST.Event_Date)#<br><br>
            Event Time:     #Trim(EVENT_REQUEST.Event_Time)#<br><br>
            Event Address:     #Trim(EVENT_REQUEST.Event_address)#<br><br>
            Event Address 2:#Trim(EVENT_REQUEST.Event_address_2)#<br><br>
            Event City:     #Trim(EVENT_REQUEST.Event_City)#<br><br>
            Event State:     #Trim(EVENT_REQUEST.Event_State)#<br><br>
            Zip code:     #Trim(EVENT_REQUEST.Event_Zip_code)#<br><br>
      Admission_Cost:    #Trim(EVENT_REQUEST.admission_Cost)#<br><br></p>
    </cfoutput>
    <p>Someone will contact you if necessary. </p>
<!--- Send the email --->
<cfmail from="#EVENT_REQUEST.Email_Address#"         to="[email protected]"
        subject="You have mail from"
        replyto="#EVENT_REQUEST.Email_Address#"
        server="mail.thehansonco.com">
You Have an inquiry from:     #Trim(EVENT_REQUEST.First_Name)#
                            #Trim(EVENT_REQUEST.Last_Name)#<br><br>
                      Phone:     #Trim(EVENT_REQUEST.Phone)#<br><br>
                    Email:     #Trim(EVENT_REQUEST.Email_Address)#<br><br><br><br>
                    Event Title:     #Trim(EVENT_REQUEST.Event_Title)#<br><br>
                    Ministry:         #Trim(EVENT_REQUEST.select_ministry)#<br><br>
                    Description:     #Trim(EVENT_REQUEST.Event_Description)#<br><br>
                    Event Date:     #Trim(EVENT_REQUEST.Event_Date)#<br><br>
                    Event Time:     #Trim(EVENT_REQUEST.Event_Time)#<br><br>
                    Event Address:     #Trim(EVENT_REQUEST.Event_address)#<br><br>
                    Event Address 2:#Trim(EVENT_REQUEST.Event_address_2)#<br><br>
                    Event City:     #Trim(EVENT_REQUEST.Event_City)#<br><br>
                    Event State:     #Trim(EVENT_REQUEST.Event_State)#<br><br>
                    Zip code:         #Trim(EVENT_REQUEST.Event_Zip_code)#<br><br>
                    Admission_Cost:    #Trim(EVENT_REQUEST.admission_Cost)#<br><br>
    </cfmail>
<!--- If the error string is not empty show the form again --->
    <cfelse>
    <!--- Begin ColdFusion Form --->
<cfform name="Event_Request"  action="EventRequestSend.cfm" method="post" >
<strong>Event Contact</strong><br />
<br />
<!--- Add table row to show error message --->
                <cfoutput>#strError#</cfoutput>
  <span class="eventReq_label">First Name:</span>
                    <cfinput
                    type="text"
                    name="First_Name"
                    message="Please enter your First Name..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Last Name:</span>
                      <cfinput
                    type="text"
                    name="Last_Name"
                    message="Please enter your Last Name..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Phone:</span>
                      <cfinput
                    type="text"
                    name="Phone"
                    message="Please enter your Phone Number..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Email:</span>
                      <cfinput
                    type="text"
                    name="Email_Address"
                    message="Please enter your Email Address..."
                    required="yes" class="event_Request_Box"
                    size="30">
                    </span><br />
                      <br />
                    <br />
                      <strong>About Event/Program</strong><br />
                    <br />
                      <span class="eventReq_label">Event Title:</span>
                      <cfinput
                    type="text"
                    name="Event_Title"
                    message="Please enter the Name of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <br />
                      <span class="eventReq_label">Ministry: </span>
                           <select name="select_ministry" size="1" class="event_Request_Box">
                             <cfoutput query="select_ministry">
                               <option value= "#select_ministry.Ministry#" <cfif (isDefined("select_ministry.Ministry") AND select_ministry.Ministry EQ select_ministry.Ministry)>selected</cfif>>#select_ministry.Ministry#</option>
                             </cfoutput>
                             </select>
                           <br />
                      <span class="eventReq_label">Event Description:</span>
                      <cftextarea name="Event_Description" cols="40" rows="10" label="Event_Description" required="yes" class="event_Request_Box" id="Event_Description" message="Please Enter a description for the event." tooltip="Please Describe the event in 75 words or less." enabled="no" value="Event_Description" maxlenght="75"></cftextarea>
                      <br />
                      <span class="eventReq_label">Event Date:</span>
                      <cfinput
                    type="text"
                    name="Event_Date"
                    message="Please enter the Date of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Event Time:</span>
                      <cfinput
                    type="text"
                    name="Event_Time"
                    message="Please enter the Time of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Address:</span>
         <cfinput
                    type="text"
                    name="Event_address"
                    message="Please enter the Address of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                    <br />
                      <span class="eventReq_label">Address 2:</span>
                      <cfinput
                    type="text"
                    name="Event_address_2"
                    message="Please enter the Address of the Event..."
                    required="no" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">City:</span>
                      <cfinput
                    type="text"
                    name="Event_City"
                    message="Please enter the City of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
  <span class="eventReq_label">State:</span>
  <cfinput
                    type="text"
                    name="Event_State"
                    message="Please enter the State of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
<br />
                      <span class="eventReq_label">Zipcode:</span>
                      <cfinput
                    type="text"
                    name="Event_Zip_code"
                    message="Please enter the Zip Code of the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                      <span class="eventReq_label">Admission Cost:</span>
                      <cfinput
                    type="text"
                    name="admission_Cost"
                    message="Please enter the cost of admission for the Event..."
                    required="yes" class="event_Request_Box"
                    size="30">
                      <br />
                    <br />
                    <input type="submit" name="Submit" class="submit" value="Submit">
                    <br />
                    <br />
                    </cfform>
                    </cfif>
</body>
</html>

When you submit a form, the name of it doesn't matter.  When you process it it's form.this and form.that, not name_of_form.this and name_of_form.that.  In your code, the structure event_request does not exist until the cfparam tags create it.  All of those tags will create variables with empty strings.  Later your code adds a bunch of error messages and doesn't send any mail because of your if/else logic.

Similar Messages

  • Code issue in php form - submit button not sending email

    Created a form that was originally supposed to open up to 2 pages depending on what was clicked. Clear would send you to an error page, and submit would send you to a thank you page. Decided that was a waste and so did not create the html pages. BUT, wanted the form info for the contact page.
    Here is the issue: it will not submit when submit is clicked. It clears when you click clear, but there's no email coming from the site via submit.
    Do I need to edit the php form code if I don't want the other pages? I've looked at what I have but I don't see if there is a form error or anything here. Here is the code for anyone who wants to have a look. Thanks in advance.
    <?php
    // get posted data into local variables
    $EmailFrom = "EMAIL FROM WEP PAGE - CONTACT - ";
    $EmailTo = "[email protected]";
    $Subject = "EMAIL FROM jennylowhar.com - CONTACT -";
    $name = Trim(stripslashes($_POST['name']));
    $telephone = Trim(stripslashes($_POST['telephone']));
    $email = Trim(stripslashes($_POST['email']));
    $comments = Trim(stripslashes($_POST['comments']));
    // validation
    $validationOK=true;
    if (Trim($name)=="") $validationOK=false;
    if (Trim($email)=="") $validationOK=false;
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "";
    $Body .= "name: ";
    $Body .= $name;
    $Body .= "\n";
    $Body .= "telephone: ";
    $Body .= $telephone;
    $Body .= "\n";
    $Body .= "email: ";
    $Body .= $email;
    $Body .= "\n";
    $Body .= "comments: ";
    $Body .= $comments;
    $Body .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.php\">";
    ?>

    I'm confused by that, but I know this works.
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $company=STRIPSLASHES($_POST['company']);
    $street=STRIPSLASHES($_POST['street']);
    $town=STRIPSLASHES($_POST['town']);
    $zip=STRIPSLASHES($_POST['zip']);
    $phone=STRIPSLASHES($_POST['phone']);
    $fax=STRIPSLASHES($_POST['fax']);
    $county=STRIPSLASHES($_POST['county']);
    $phone=STRIPSLASHES($_POST['phone']);
    $email=STRIPSLASHES($_POST['email']);
    $comments=STRIPSLASHES($_POST['comments']);
    $date=STRIPSLASHES($_POST['date']);
    $time=STRIPSLASHES($_POST['time']);
    $location=STRIPSLASHES($_POST['location']);
    $from="$email";
    $to="putemailhere";
    $subject="Submission from Contact Form";
    $msg= "This is a submission from yoururl.com.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Company Name: $company\n"
    . "Street Address: $street\n"
    . "Town:$town\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n"
    . "Comments: $comments\n";
    mail($to, $subject, $msg, 'From:' .$from);
    PS, go back and edit your origial post and REMOVE your email.
    Gary

  • Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.

    Currently using Flash Pro CS5,  getting error when trying to open CS4 file.  Error is "Slides and Forms documents are not supported in this version of Flash. Please open in previous version.  Has there been a fix or patch to this issue or do I have to convert back to CS4 to open the file?

    Having the same problem in CS6.  I can tell you that converting back to CS4 will NOT solve the problem.  It seems when support for backward compatibility is discontinued, there's just no way to get
    any help at all?  Absolute failure to provide any user support so far...

  • I download app only available in Poland and change my IDi now I came back to original account but can not activate itune match anymore I have to wait 90 days any issue because I pay itune match with my original account  thanks for support

    I download app only available in Poland and change my IDi now I came back to original account but can not activate itune match anymore I have to wait 90 days any issue because I pay itune match with my original account  thanks for support

    thanks Meg
    I understand you are not Apple but i was presuming that some logic or technical reason i miss was behind this.
    I really do not see any logic business pratice. If i understand i can be agree or desagree but as minima i know the rules and why.
    to sumarize...my story 
    my id was with XXX and i bought Itune match one year with this account and 4 device are conected with the same account.
    on Ipad device i change my ID to YYY then .... because i need to update some apps and connect to itune match i came back to ID XXX then no problem to update apps but .... no way to come back to itune match.
    .... no way to use itune match anyhow with Ipad and account XXX linked with account XXX. WHYYYY ??? no clue.

  • My original apple id is not an email address . I bought iCloud memory via that same account no problem. When setting up iCloud on iPad you cannot have a primary iCloud account unless it has an email address . Made new account but can you change originalI'

    My original apple id is not an email address .
    I bought iCloud memory via that same account no problem.
    When setting up iCloud on iPad you cannot have a primary iCloud account unless it has an email address .
    Made new account as per instruction ie [email protected] works fine
    BUT as I want to utilise the money spent on the additional memory it would be great to use the initial account set up as my primary HOWEVER as far as I have tried the initial apple ID CANNOT be changed. Bit confused actually any usefull guidance will be greatly appreciated. Thanks

    See Here > Apple ID: Contacting Apple for help with Apple ID account security
              Ask to speak with the Account Security Team...
    lmerchant wrote:
    My new phone has an old apple ID associated with iCloud only.  I cannot delete the account as it has "Find my iPhone" turned on. 
    Activation Lock in iOS 7  >  http://support.apple.com/kb/HT5818

  • How can I form a group in address book. I need to transfer a large number of emails from an excel spread sheet to form a group to send emails to.

    I need to transfer a large number of emails from an excel spread sheet to form a group to send emails to. I can either use address book or transfer them to BTYahoo contacts and send from there.

    Hello, if you have the font that Photoshop is supposed to use to write the barcode, and each image is also listed in the spreadsheet, you can use the little known feature called variables: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.h tml
    see this video: 
    http://www.youtube.com/watch?v=LMAeX5pexNk
    Or this one:
    http://tv.adobe.com/watch/adobe-evangelists-julieanne-kost/pscs5-working-with-variables/

  • TS2621 I did set up my email on my iphone, but i deleted the account. I tried to set it back up but my iphone will not send or receive emails.

    I  did set up my email on my iphone, but i deleted the account. I tried to set it back up but my iphone will not send or receive emails with the new setup.
    I started again 3 times...already!!
    Tom

    Its OK I gave up and turned off my iphone and turned back on and its OK now.

  • Muse contact form is not sending emails.

    Muse site contact form is not sending emails.  I perform a form check using this link http:/my_site.com/scripts/form_check.php.  It is giving the message that SQL configuration problem.
    Please help to solve this.

    I posted a very similar issue into the bugs forum. "
    Email form submit not sending to GoDaddy and Yahoo hosted email accounts"
    I have tested the emails across various forms and it works but does not using the Muse form widget. I strongly believe this is an Adobe Muse issue and needs further support from Adobe. In the mean time I have begun using Jot Form on my sites (jotform.com)

  • Usps click n ship when I try to sign in it loops back to sign in and will not let me send a package. New problem with USPS after they updated. I'm on Mac using 10.6.8

    When I try to log on to click n ship it keeps looping back to sign in. It will not let me send package. Started with usps updated of site.

    I had the same problem and found the solution here:
    https://discussions.apple.com/thread/3189272

  • Why has Acrobat - Forms - Distribute suddenly stopped sending emails?

    I completed a new Form and distributed it to two recipients.
    Now I get the error message 'Failed to send the form to recipients' Followed by 'Form distribution aborted'
    Can anyone help please. Normal emails are sending from my computer.

    Hi J34345-
    It's hard to know what's going on, aside from some programmatic error in the file you're distributing. By far the simplest solution is to return to your original form, save it with another name, and then start the distribution process over again. It'll only take a couple of minutes, and will be far quicker and easier than trying to understand what's happened with your original file.
    donna.

  • My iPad screem is very big any way to put back to original size i can not open any program

    my iPad screen is very big any advise how to put back to the original size? i can not open anything i have one big iten in all my screen

    Try double-tapping the screen with 3 fingers, then make sure that Settings > General > Accessibility > Zoom is 'off'

  • Chrome not sending email from form

    Hi Everyone,
    I have setup a form in CS5 have the input sent to me with a script.  It all works fine in IE 8, Firefox 12.0, Safari 5.1.2 for PC, but I do not get the email when using Chrome.
    I have the form page working on my website but the page itself is not linked yet, as I am testing still. 
    I am including the form page itself meetfrm2 and the script sendresults 
    If anyone has any ideas they would be appreciated.
    Thanks in advance,
    dloj
    meetfrm2 page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "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" />
    <title>Meeting Change Form</title>
    <link href="styles/daone.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    /* Give the menu bar a width and set the margins to "auto"
    * so that the browser does the centering.
    ul.MenuBarHorizontal {
              width: 50.2em;
              margin: auto;
    /* Center the text within all menu item links.
    ul.MenuBarHorizontal a {
              text-align: center;
              background-color:#FC9;
    /* Set the the alignment back to left for any
    * menu item links that are in a sub menu.
    ul.MenuBarHorizontal ul a {
              text-align: left;
    -->
    a:link {
              text-decoration: none;
    a:visited {
              text-decoration: none;
    a:hover {
              text-decoration: none;
    a:active {
              text-decoration: none;
    </style>
    </head>
    <body >
    <div id="container">
      <div id="banner"><img src="images/newheadercb2.png" alt="socalda" width="1101" height="180"  /></div>
      <div id="main_image">
       <?php include("includes/menu.php"); ?>
      </div><br /><br /><br />
      <div id="centerb_col" style="font-size:14px"><h2>Online Meeting Change Form</h2>
      <p align="center">Please fill-out the form below to expedite your meeting changes.</p>
      <h2>Your Information</h2>
      <form action="scripts/sendresults.php" method="post" name="form1" id="form1">
      <table class="myForms">
      <tr><td>Your Name</td><td><input name="Your Name" type="text" id="yname_meet" size="50" /></td></tr>
      <tr><td>Your Email</td><td><input name="Your email Address" type="text" id="email_meet" size="50" /></td></tr>
      <tr><td>Your Phone Number</td><td><input name="Your Phone Number" type="text" id="phone_meet" size="15" maxlength="12" /></td></tr>
      </table>
      <p>Please check the correct radio button below to signify what type of information you are submitting. <br /> Is this a New Meeting, Changing Information about a current Meeting, <br />or information about a meeting that is closing. 
      <p>
        <label>New Meeting
          <input type="radio" name="radio" id="new_meet" value="new_meet" />
        </label>
        <label>Change Meeting Information
          <input type="radio" name="radio" id="change_meet" value="change_meet" />
        </label>
          <label>Closing Meeting
            <input type="radio" name="radio" id="closing_meet" value="closing_meet" />
          </label>
         <br />
          <h2>Meeting Information</h2>
          <table class="myForms">
          <tr><td>Meeting Name</td><td><input name="Meeting Name" type="text" id="name_meet"         size="50" /></td></tr>
          <tr><td>GSO ID</td><td><input name="GSO ID" type="text" id="gso_meet" size="10" /></td></tr>
          <tr><td>Meeting Contact</td><td><input name="Meeting Contact" type="text" id="contact_meet" size="50" /></td></tr>
          <tr><td>Meeting Contact Phone</td><td><input name="Meeting Contact Phone" type="text" id="cphone_meet" size="12" /></td></tr>
          <tr><td>Meeting Address</td><td><input name="Meeting Address" type="text" id="address_meet" size="50" /></td></tr>
          <tr><td>Meeting City</td><td><input name="Meeting City" type="text" id="city_meet" size="50" /></td></tr>
          <tr><td>Meeting Zip</td><td><input name="Meeting Zip" type="text" id="zip_meet" size="10" /></td></tr>
          <tr><td>Meeting Room</td><td><input name="Meeting Room" type="text" id="room_meet" size="50" /></td></tr>
          <tr><td>Meeting Focus</td><td><input name="Meeting Focus" type="text" id="focus_meet" size="50" /></td></tr>
            <tr><td>Meeting Directions</td><td><textarea name="Meeting Directions" cols="" rows="" id="directions_meet"></textarea></td></tr>
          </table>
          <br />
          <input name="Submit" type="submit" id="submit_meet" value="Submit" />
      </form>
      <br /><br />
      </p>
      <hr />
      </div>
       </div>
    </body>
    </html>
    The Script sendresults.php:
    <?php
    //--------------------------Set these paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'Results from Meeting Change Form';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    $emailadd2 = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.socalda.org/confirmation.php';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    // --------------------------Do not edit below this line--------------------------
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 50)
    {echo "Name of form element $key cannot be longer than 50 characters";die;}
    $j = 50 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    mail($emailadd2, $subject, $text, 'From:'.$emailadd2.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    You're entirely welcome.
    Good luck with your project.

  • CFMail in CF8 on Windows VPS account not sending emails via Smartermail 5

    where should I look

    quote:
    Originally posted by:
    Daverms
    Hi,
    Have you checked the mail log. Any errors logged over there?
    I did and the mails that are sent via the store end up being
    moved tot the undelivered mail directory
    Moved undelivered mail: Mail47389.cfmail to
    C:\ColdFusion8/Mail/Undelivr directory
    This is however not the case when sent a mail via the
    SmarterStat webapplication running on that same server with the
    same corresponding mail adres that the store itself uses to sent
    confirmation emails to customers or sent out newsletters.

  • FORMS: insert to DATABASE + send EMAIL

    I recently chose to recreate a site that was removed from our
    Homeowner's Association use. That site was able to do two things of
    which I've only been able to accomplish one. Those two things:
    1) Insert user form data into a database (I CAN DO THIS
    NICELY!)
    2) Send an email containing the form's data to the user (and
    a group)
    Is there a way to accomplish both these tasks while using
    DW's coding (again, I said I can INSERT data to the database)
    thanks for ANY help here!!
    Glen the Computer Guy

    Did you check out this page? The section about "Dump field
    values to a MySQL
    table" etc?
    http://www.bebosoft.com/products/formstogo/features.php
    Unless I'm misunderstanding, isn't this what you want for one
    part? To save
    the info to a database and (Part II) at the same time send an
    email, either
    to you with the info, to the user (a confirmation) email, or
    both?
    MD
    (Glad he's not pissing anyone off today....yet)
    not_a_bozo_jr wrote:
    > MD ...
    >
    > You've replied with the solution to my question (of
    solving BOTH
    > situations) via use of Forms To Go.
    >
    > I think this is true (that you've offered the solution)
    ... I did go
    > to their website, but did not see that the write-up on
    Forms To Go
    > mentioned anything about the database INSERT process. I
    did send a
    > query to them asking this very same question (as
    presented here by me
    > at the get-go)... I'll see what they reply with. And,
    since there's a
    > FREE TRIAL of Forms To Go, I'll do that and investigate
    firsthand.
    >
    > Thanks also for poking fun at me with your hope of me
    not going off
    > on you ...
    >
    > Funny, intrinsically we all know when we're "on topic"
    and helping to
    > resolve the stated issue. You most likely read my
    initial "going off"
    > reply and determined that I was reacting to the waste of
    my time
    > since I had already stated I had solved on of the tasks,
    but wanted a
    > solution to them both.. then again, maybe I could have
    written it
    > more clearly?
    >
    > Anyway, for now (and I'll follow-up on this once I've
    tried it -
    > Forms To Go), this is the answer that seems most "right
    on!" to me.
    >
    > THANKS!!
    >
    > Glen the Computer Guy

  • I've down-loaded Lion, and now I can't attach documents when I send email. I use hotmail.

    I down-loaded 10.8.2 and now I can't attach documents to emails. I use hotmail as my primary address. I receive an error message stating that the documents are corrupted. I had no problems with this prior to upgrading to 10.8.2. What can I do?

    Try setting the email settings, server, etc. to those in this webpage by Roger Wilmut: iCloud Mail settings in Snow Leopard
    OT

Maybe you are looking for

  • The problem is encountered when we try to open the file from external vendor.

    We are using Adobe illustrator CS3 with Patch 13.0.2. in MAC PC with OS 10.4.11. We tried to open the file generated from external vendor. This file is made by CS4/CS5 & downgraded to CS3 because we are using different version of CS package. When we

  • Excise mandatory

    Hi, While making GR, if the PO is having excise duty applicable, we have to capture excise invoice before posting GR.The item  is checked for capturing excise invoice.If somebody selects NO EXCISE ENTRY while Gr creation, system allows to proceed fur

  • Automatic Login via SAPGUI

    I am trying to automatically logon to my sap system using a script but I am not sure what is the best approach. Has anybody done this or am I cutting new ground here.

  • Importing RAW images from iPhoto to Elements 8

    I just successfully downloaded Elements 8 (the free trial version). I have an iMac, and until now have used iPhoto for all of my photo file storage and editing needs. I need to import some of my original RAW files from iPhoto into Elements 8. How is

  • Receiving an error message: An unknown error has occured (1415)

    I have had a shuffle unit for a few months without issue. When I changed tracks the last time, my ipod shuffle no longer played music when pressing play (changing volume settings, etc.). I have followed the 5 R's successfully until I get to the last