Connecting Tech Pros Worldwide Forums | Help | Site Map

send email when condition it met

canajien@gmail.com
Guest
 
Posts: n/a
#1: Mar 18 '08
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_access">
<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_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.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
Guest
 
Posts: n/a
#2: Mar 18 '08

re: send email when condition it met


On Mar 18, 1:22 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
Quote:
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_access">
<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_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.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?
canajien@gmail.com
Guest
 
Posts: n/a
#3: Mar 18 '08

re: send email when condition it met


On Mar 18, 9:31 am, GArlington <garling...@tiscali.co.ukwrote:
Quote:
On Mar 18, 1:22 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
>
>
>
Quote:
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
>
Quote:
the question is a simple drop box:
>
Quote:
<select name="safe_access">
<option value="0"></option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
>
Quote:
and the javascript validation is:
>
Quote:
//safe_access
if ( form.safe_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.focus();
return false;
>
Quote:
}
>
Quote:
how do I get it to send an email, and still store information in the
table when someone answers no?
>
Quote:
I've done several searches, but they all keep bringing up how to email
the form instead of what I am looking for.
>
Quote:
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="thankyou.php" method="post" name="form" id="form">
canajien@gmail.com
Guest
 
Posts: n/a
#4: Mar 18 '08

re: send email when condition it met


On Mar 18, 9:31 am, GArlington <garling...@tiscali.co.ukwrote:
Quote:
On Mar 18, 1:22 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
>
>
>
Quote:
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
>
Quote:
the question is a simple drop box:
>
Quote:
<select name="safe_access">
<option value="0"></option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
>
Quote:
and the javascript validation is:
>
Quote:
//safe_access
if ( form.safe_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.focus();
return false;
>
Quote:
}
>
Quote:
how do I get it to send an email, and still store information in the
table when someone answers no?
>
Quote:
I've done several searches, but they all keep bringing up how to email
the form instead of what I am looking for.
>
Quote:
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="thankyou.php" method="post" name="form" id="form">
GArlington
Guest
 
Posts: n/a
#5: Mar 18 '08

re: send email when condition it met


On Mar 18, 1:51 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
Quote:
On Mar 18, 9:31 am, GArlington <garling...@tiscali.co.ukwrote:
>
>
>
Quote:
On Mar 18, 1:22 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
>
Quote:
Quote:
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
>
Quote:
Quote:
the question is a simple drop box:
>
Quote:
Quote:
<select name="safe_access">
<option value="0"></option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
>
Quote:
Quote:
and the javascript validation is:
>
Quote:
Quote:
//safe_access
if ( form.safe_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.focus();
return false;
>
Quote:
Quote:
}
>
Quote:
Quote:
how do I get it to send an email, and still store information in the
table when someone answers no?
>
Quote:
Quote:
I've done several searches, but they all keep bringing up how to email
the form instead of what I am looking for.
>
Quote:
Quote:
Thanks
>
Quote:
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="thankyou.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?
canajien@gmail.com
Guest
 
Posts: n/a
#6: Mar 18 '08

re: send email when condition it met


On Mar 18, 12:52 pm, GArlington <garling...@tiscali.co.ukwrote:
Quote:
On Mar 18, 1:51 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
>
>
>
Quote:
On Mar 18, 9:31 am, GArlington <garling...@tiscali.co.ukwrote:
>
Quote:
Quote:
On Mar 18, 1:22 pm, "canaj...@gmail.com" <canaj...@gmail.comwrote:
>
Quote:
Quote:
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
>
Quote:
Quote:
the question is a simple drop box:
>
Quote:
Quote:
<select name="safe_access">
<option value="0"></option>
<option value="yes">Yes</option>
<option value="no">No</option>
</select>
>
Quote:
Quote:
and the javascript validation is:
>
Quote:
Quote:
//safe_access
if ( form.safe_access.selectedIndex == 0 ){
alert ( "Please select whether or not there is safe access to the
beach." );
form.safe_access.focus();
return false;
>
Quote:
Quote:
}
>
Quote:
Quote:
how do I get it to send an email, and still store information in the
table when someone answers no?
>
Quote:
Quote:
I've done several searches, but they all keep bringing up how to email
the form instead of what I am looking for.
>
Quote:
Quote:
Thanks
>
Quote:
Quote:
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?
>
Quote:
right now the form action sends the information to a php script which
stores the information in the table:
>
Quote:
<form action="thankyou.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
Closed Thread