send email when condition it met

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • canajien@gmail.com

    send email when condition it met

    I have a form that stores information in a table, but I also need it
    to send an email when a specific question, among the many, is answered
    with no

    the question is a simple drop box:

    <select name="safe_acce ss">
    <option value="0"></option>
    <option value="yes">Yes </option>
    <option value="no">No</option>
    </select>

    and the javascript validation is:

    //safe_access
    if ( form.safe_acces s.selectedIndex == 0 ){
    alert ( "Please select whether or not there is safe access to the
    beach." );
    form.safe_acces s.focus();
    return false;
    }

    how do I get it to send an email, and still store information in the
    table when someone answers no?

    I've done several searches, but they all keep bringing up how to email
    the form instead of what I am looking for.

    Thanks


  • GArlington

    #2
    Re: send email when condition it met

    On Mar 18, 1:22 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
    I have a form that stores information in a table, but I also need it
    to send an email when a specific question, among the many, is answered
    with no
    >
    the question is a simple drop box:
    >
    <select name="safe_acce ss">
    <option value="0"></option>
    <option value="yes">Yes </option>
    <option value="no">No</option>
    </select>
    >
    and the javascript validation is:
    >
    //safe_access
    if ( form.safe_acces s.selectedIndex == 0 ){
    alert ( "Please select whether or not there is safe access to the
    beach." );
    form.safe_acces s.focus();
    return false;
    >
    }
    >
    how do I get it to send an email, and still store information in the
    table when someone answers no?
    >
    I've done several searches, but they all keep bringing up how to email
    the form instead of what I am looking for.
    >
    Thanks
    Do you intend to store the data in the table AND send email via
    javascript?
    Or do you have some server-side script to do it for you?

    Comment

    • canajien@gmail.com

      #3
      Re: send email when condition it met

      On Mar 18, 9:31 am, GArlington <garling...@tis cali.co.ukwrote :
      On Mar 18, 1:22 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
      >
      >
      >
      I have a form that stores information in a table, but I also need it
      to send an email when a specific question, among the many, is answered
      with no
      >
      the question is a simple drop box:
      >
      <select name="safe_acce ss">
      <option value="0"></option>
      <option value="yes">Yes </option>
      <option value="no">No</option>
      </select>
      >
      and the javascript validation is:
      >
      //safe_access
      if ( form.safe_acces s.selectedIndex == 0 ){
      alert ( "Please select whether or not there is safe access to the
      beach." );
      form.safe_acces s.focus();
      return false;
      >
      }
      >
      how do I get it to send an email, and still store information in the
      table when someone answers no?
      >
      I've done several searches, but they all keep bringing up how to email
      the form instead of what I am looking for.
      >
      Thanks
      >
      Do you intend to store the data in the table AND send email via
      javascript?
      Or do you have some server-side script to do it for you?
      right now the form action sends the information to a php script which
      stores the information in the table:

      <form action="thankyo u.php" method="post" name="form" id="form">

      Comment

      • canajien@gmail.com

        #4
        Re: send email when condition it met

        On Mar 18, 9:31 am, GArlington <garling...@tis cali.co.ukwrote :
        On Mar 18, 1:22 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
        >
        >
        >
        I have a form that stores information in a table, but I also need it
        to send an email when a specific question, among the many, is answered
        with no
        >
        the question is a simple drop box:
        >
        <select name="safe_acce ss">
        <option value="0"></option>
        <option value="yes">Yes </option>
        <option value="no">No</option>
        </select>
        >
        and the javascript validation is:
        >
        //safe_access
        if ( form.safe_acces s.selectedIndex == 0 ){
        alert ( "Please select whether or not there is safe access to the
        beach." );
        form.safe_acces s.focus();
        return false;
        >
        }
        >
        how do I get it to send an email, and still store information in the
        table when someone answers no?
        >
        I've done several searches, but they all keep bringing up how to email
        the form instead of what I am looking for.
        >
        Thanks
        >
        Do you intend to store the data in the table AND send email via
        javascript?
        Or do you have some server-side script to do it for you?
        right now the form action sends the information to a php script which
        stores the information in the table:

        <form action="thankyo u.php" method="post" name="form" id="form">

        Comment

        • GArlington

          #5
          Re: send email when condition it met

          On Mar 18, 1:51 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
          On Mar 18, 9:31 am, GArlington <garling...@tis cali.co.ukwrote :
          >
          >
          >
          On Mar 18, 1:22 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
          >
          I have a form that stores information in a table, but I also need it
          to send an email when a specific question, among the many, is answered
          with no
          >
          the question is a simple drop box:
          >
          <select name="safe_acce ss">
          <option value="0"></option>
          <option value="yes">Yes </option>
          <option value="no">No</option>
          </select>
          >
          and the javascript validation is:
          >
          //safe_access
          if ( form.safe_acces s.selectedIndex == 0 ){
          alert ( "Please select whether or not there is safe access to the
          beach." );
          form.safe_acces s.focus();
          return false;
          >
          }
          >
          how do I get it to send an email, and still store information in the
          table when someone answers no?
          >
          I've done several searches, but they all keep bringing up how to email
          the form instead of what I am looking for.
          >
          Thanks
          >
          Do you intend to store the data in the table AND send email via
          javascript?
          Or do you have some server-side script to do it for you?
          >
          right now the form action sends the information to a php script which
          stores the information in the table:
          >
          <form action="thankyo u.php" method="post" name="form" id="form">
          This question that may be answered "yes" or "no", and you want to act
          when the answer is "NO",
          it is NOT to the tune of "Do you want to subscribe to our newsletter
          (and other unsolicited mail)?"
          Is it?

          Comment

          • canajien@gmail.com

            #6
            Re: send email when condition it met

            On Mar 18, 12:52 pm, GArlington <garling...@tis cali.co.ukwrote :
            On Mar 18, 1:51 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
            >
            >
            >
            On Mar 18, 9:31 am, GArlington <garling...@tis cali.co.ukwrote :
            >
            On Mar 18, 1:22 pm, "canaj...@gmail .com" <canaj...@gmail .comwrote:
            >
            I have a form that stores information in a table, but I also need it
            to send an email when a specific question, among the many, is answered
            with no
            >
            the question is a simple drop box:
            >
            <select name="safe_acce ss">
            <option value="0"></option>
            <option value="yes">Yes </option>
            <option value="no">No</option>
            </select>
            >
            and the javascript validation is:
            >
            //safe_access
            if ( form.safe_acces s.selectedIndex == 0 ){
            alert ( "Please select whether or not there is safe access to the
            beach." );
            form.safe_acces s.focus();
            return false;
            >
            }
            >
            how do I get it to send an email, and still store information in the
            table when someone answers no?
            >
            I've done several searches, but they all keep bringing up how to email
            the form instead of what I am looking for.
            >
            Thanks
            >
            Do you intend to store the data in the table AND send email via
            javascript?
            Or do you have some server-side script to do it for you?
            >
            right now the form action sends the information to a php script which
            stores the information in the table:
            >
            <form action="thankyo u.php" method="post" name="form" id="form">
            >
            This question that may be answered "yes" or "no", and you want to act
            when the answer is "NO",
            it is NOT to the tune of "Do you want to subscribe to our newsletter
            (and other unsolicited mail)?"
            Is it?
            the question is actually:

            Is there safe access? (yes/no)

            it's one of many questions, but if the answer to this one is no than
            an email needs to be sent to another person alerting them of the
            problem ASAP instead of waiting for them to look at all the answers at
            a later time, the person filling out the form isn't asked for their
            email

            Comment

            Working...