Asp Page Wont Send Email If Form Fields Are Blank

I created a feedback form for my website that has only 2 required fields. When you submit the form it calls my asp page which puts the information in a database and then sends me n email with the information that was entered into the form. The problem is that the form only has two required fileds, and if the remaining non required fields are left empty when the asp page is called it does write to the data base, but does not send me any email. However if I go back in and put somethng in every field in the form then when I submit the form and my asp page is called it writes to the data base and sends me an email with the all the information I entered in the feedback form. Is there a way to tell my asp page that it is ok to send the email even if the non required fields are left empty? I really do not want to have to go back through the form and put default values in for each area of the form? Also is there a way to have an error displayed if the email is not sent? My asp code is below....

View Replies


ADVERTISEMENT

How To Send Blank Fields On Form

I have created a database were you submit a job by entering the fields which is fine if it is a site visit but if it is a phone call or remote help not all the fields need to be filled in but if there not filled in it wont submit the values to the database i get data mismatch error code is below.

I either need to be able to send them blank values to the database or ideally i wont to create a option box with Phone call, Site visit and remote help which when selected takes you to the correct page which have different values in the form to fill in.

View Replies View Related

Request All Fields From A Form And Send By Email

i already create a code to request all fields from a previous page form using the next function y separate the fields with the value of each one. Code:

View Replies View Related

How To Send All Fields Of A Form Without Specifying Each One

how can I send the whole form using the script below, without listing every NAME of the form. Basically I wondered if you can just put a certain code in that will send all the fields of the form without putting each NAME of the fields down indiv individualy??

My forms Name is 'conf', so I was wondering if there was a code like SENDWHOLEFORM="conf", (I know it obviously won't be that, but just to put the point across!)

<%
DIM strNAME, Mailer
strFirstName = Upload.Form("NAME")

Set JMail = Server.CreateObject("JMail.SMTPMail")

JMail.ServerAddress = "10.2.3.2"
JMail.AddRecipient "me@me.com"
JMail.Sender = "me@me.com"
JMail.Subject = "Submitted Item to sell"
JMail.Body = "Name: " & strNAME

JMail.Execute
Set JMail= Nothing
%>

View Replies View Related

ASP Repeating Form Fields In An Email Form

Would anyone be able to give some guideance in ASP code as to how I would repeat a section of input fields in a form based upon the number of guests that are attending an event?

Basically, what needs to happen is if 3 guests are attending, I need the Name, address, city, state fields to repeat so they can be filled in with information.

Then all of the information from the whole form is submitted which returns an email to the administrator of the event.

View Replies View Related

Send A Form To My Email

Basically I have a page and I would like to have several forms on this page where a user can input thier email address and a short comment, then click on send and i get n email with the details.

I know how to set up a basic form but I have no idea how to send it, can anyone help me and show me what to put where to set this up on brinkster please.

Oh and I would prefer to use ASP if thats possible.

View Replies View Related

Send Email From A Form

i'm a begginer and need some help with editing some code.

I have a simple form which contains an email field. When a user types his email address and submits the form I want to send an email to him. How do I do that?

View Replies View Related

Send Email From Form

I am having a problem writing ASP script to send email from a form. I am setting up a order form online and need to send the information from form to my email address. I copied the script I saw on an article on this site. I have copied my exact code below...what am I doing wrong.

<html>
<body>

<%
Set Mail=Server.CreateObject(“CDONTS.NewMail”)
Mail.To="MY EMAIL ADDRESS”
Mail.From="My email field"
Mail.Subject=”Just testing my script”
Mail.Body=”Hey! I am sending this email through an ASP Page and
guess what? I haven’t learnt much yet, but know that ASP is very
powerful.”

View Replies View Related

Syntax To Have Body Of Email Include Form Fields

I finally figured out how to get my form to its database and have an
email come my way. However I am now trying to set up the body of the
email to include the form details. However the body of the email that
is sent only includes the last line of the "body" tag and has no
details next to it. Code:

View Replies View Related

How To Display Multiple Form Fields In Email Using This Script?

I am using this script to submit my form fields into the body of my email:

***********************************************
Dim strBody
dim ix, formElementName, formElementValue
strBody = "Results of form submitted at " & Now() & vbCrLf & CrLf
For ix = 1 to Request.Form.Count
formElementName = Request.Form.Key(ix)
formElementValue = Request.Form.Item(ix)
strBody = strBody & (formElementName & ": " & formElementValue & vbCrLf)
Next

***********************************************
I'm completely new to vbscript and have been searching all over the net for an example of this script being used with mutliple fields with absolutely no luck.

The closest I've come to getting something back from this thing is when I tested the script with these elements:

FormElementName = Request.Form.Key("Name")
formElementValue = Request.Form.Item("Name")
formElementName = Request.Form.Key("Telephone")
formElementValue = Request.Form.Item("Telephone")
formElementName = Request.Form.Key("Email")
formElementValue = Request.Form.Item("Email")

Which produced this result:

Email: Email
Email: Email
Email: Email

Its seems the answer to my problem lies in defining the 'Key' and possibly the 'Item' parameters but I haven't been able to find any documentation on these terms. Can someone out there please save me from what probably is a very simple solution?

View Replies View Related

Using ASP.NET To Send Form Results To An Email

I have 2 part question: I have an html form: https://ws13.ipowerweb.com/eoscorg/pre-op_form.htm I created that has to have SSL on it. The form also includes a confirmation page to the user after the submit button is hit. However, I have been informed because I used Front Page to create the form, the SSL doesn't work with Front Page's form handler. So I want to know if I can use ASP.NET to create the form and without any conflicts with SSL? Also, I want to find out if all the form objects (form fields, text box fields) have to be coded as ASP.NET objects or can I keep the html form objects and just use ASP.NET code to send the form to an email address and to then send the confirmation page to the user? In other words do I have use ASP.NET code for the whole form?

View Replies View Related

Email Results And Send To DB (form)

Can I send a form to the DB and email it at the same time? How do I do that?

View Replies View Related

Any Simpler Way To Send A Big Form Via Email?

I have a very big form which should be filled up and when submitted should sent as an email exactly in the same format (html). I use CDONTS to send mail. sending mail works fine. In the Mail body I concatenate every line as given below. As the form is very big I find this way to be very troublesome when there is any " (quotes) or whenever my form need to be changed.

I want to know whether is there any simple way to send a big form in the html format to a mail id using cdonts.

View Replies View Related

Form Send To Email Using CDO Syntax

I having a problem with the CDO syntax I guess. Here's the code :

<%
response.buffer = true
message = "The following data was submitted:"
message = message & vbcrlf & vbcrlf

for each item in request.form
message = message & item & ": " & request.form(item) & vbcrlf
next

'Create message object
Dim objMessage

Set objMessage = Server.CreateObject("CDO.Message")

objMessageTo = "billy_fong@hotmail.com"
objMessageFrom = request.form("email")
objMessageSubject = "Message from the website"
objMessageBody = message
objMessageSend

set objMessage = nothing

response.redirect "confirm.asp?msg=" & Server.URLEncode("You have successfully sent your quote, thank you")
%>

The error was on the objMessageSend. What's wrong with that? Actually there was another form file which called to this asp file.

View Replies View Related

Send Web Form Input As Email

I want to send the data from a user's form input in an ASP email. For instance, shen the user submits their name and email address on a form, I would receive an email with those fields mixed in with a plain text message. How can I do this?

I have programmed extensively in other languages, but not ASP (our company is switching from ColdFusion), so I will need my answer in fairly introductory ASP terms.

View Replies View Related

How To Send Email From An Asp Page ?

how to send email from an asp page?

View Replies View Related

Blank Fields

All my fields give that error when I try to leave it blank when inserting a new record. The field is not required in the database, so what do I have to do to insert it as blank?

SQL:

Code:
INSERT INTO Tablename (REQUIRED, NOTREQUIRED) VALUES ('tag', '')
Error:

Code:
[Microsoft][ODBC Microsoft Access Driver] Field 'Tablename.NOTREQUIRED' cannot be a zero-length string.

View Replies View Related

Send Web Form Value To Email Aslo Cc Sender

try to send web form data to one person email (administrator) and also copy the sender, does anybody provide asp prototype?

View Replies View Related

Send Form Data To An Email Address?

What I am trying to do is create a page on my company's internet site so that our customers can fill out a form, click a submit button and then have the data they entered be emailed to me. I have already created the form within Dreamweaver MX. How do I setup the Submit button to automatically email the information to me?

View Replies View Related

Send Html Email With Form Included

I been trying to send a Html email with a form included. I tryed by including <form> and <input> as usual in Html code. What happen is that the email is send and the form are seen but the input button doesnt work right, in hotmail , msn, I mean its not active
Any idea?

View Replies View Related

Send Email Through Web Form, Using External SMTP

I have a CDONTS script which has been sending mail from a client's website form to their address. However, the script has suddenly stopped working after three years of working fine. It doesn't error, they just don't receive the mail any more. I've tried CCing myself in the script and can confirm the mail is not getting through. The script itself is tried and tested and syntaxially correct, and it is hosted on a windows 2000 server which has not been changed or reconfigured at all recently.

I think the problem is because they're using their own exchange server, not the web hosts' mail server. Therefore I would expect that mail sent from the web script wouldn't go through because there is no local mail server to process it.

The problem is that the script hasn't changed, the host say their system hasn't changed, and the client's IT team say their exchange settings haven't changed!?!

I could set up a CDOSYS script to use their Exchange server to deal with the email, but their IT support won't allow relaying, so I don't think this is possible.

Is connecting to their Exchange box the only option, or should the website host still be able to process the web-script-generated mail despite not being their mail provider? I'm getting a lot of grief here, but it can't be the script that has suddenly broken because nobody has touched it!

View Replies View Related

Send An Asp Page As Html Email

This is my first post hope it makes sense. I have learnt how to send emails from forms passing variable etc and it works, but I am lazy so here it goes:

I am writing a set of intranet based asp reports for which the underlying asp code can get quite complicated (tables nested in tables, all sorts of calulations and parameters etc). I would like users to be able to send that report (neatly formated in his browser) by pressing a form button. (by the way, we use Outlook)

1. either as an .html attachement (which would of been saved automatically either locally or on the server)

2. or as an html email (as you would do when doing File > Send > Page by Email in IE 6.0) Code:

View Replies View Related

Detecting Blank Fields

I am writing an application which when the code first loads there is a form which all the fields are blank. I then need to test some date fields to check if the end date is before the start date etc. The form fails to work. So I then wrote a test asp page which has a single box I then use an If...

Else statement if it is Blank then do nothing if it has data in the text box then display a message. The form works ok until I input text and then it does not detect any input text in it and therefore does not display the message. This is totally the oppoisite of the original application which does not detect the form is empty. Code:

View Replies View Related

How Do I Skip Blank Fields?

I'm using ASP FormMail to collect user info, but now I'm trying to figure out how to modify the code so that any blank fields from the form will not be displayed on the confirmation page/email. I tried to modify the code below in bold, but it gave me a syntax error. Code:

View Replies View Related

Form Setup To Send The Results To An Email Address

I have a webpage with ASP that is a form. I have the form setup to send the results to an email address (using the Frontpage feature). We have published the page to the web, but it will not send email. It simply does nothing. This is the code:

<form name="Datasheet" method="POST" action="DataSheet.asp" webbot-action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" S-Email-Format="TEXT/PRE"
S-Email-Address="ray.clark@721-file.com" B-Email-Label-Fields="TRUE" S-Builtin-Fields startspan -->

View Replies View Related

Send Email With Link To Current Page

How would I send an email to someone from a webpage with a link to the
current page? I've seen this where you can put in your email, the person's
email that you are sending teh page to, a subject for the email, and a
message along with the link.

View Replies View Related

Ordering Records With Blank Fields Last

I've written an ASP page that pulls all records from a table. My query
is 'SELECT * FROM teacher ORDER by Class'

It is working fine... sorta. The table has about 20 records, but only
5 have an entry in the 'Class' field. The 15 records with the blank
class field show up first, then the other 5 records. Is it possible to
have the blank one show after the ones with an entry. Here's how my
results look, IOW. Code:

View Replies View Related

Input Fields Blank Space

I have entries in the database that have spaces (Todd's Place) but when I try to get the info into an input box it only shows the first part of the string before the space (Todd's) Here is my code
strSQL = "SELECT ID, memname FROM tblMembers WHERE ID =" & numID
Set rsEdit = adoCon.Execute (strSQL)

<input type=text value=<%= rsEdit.Fields("memname").Value %>>

The funny thing is I can see the whole string when I view the source on the page (<input type=text value=Todd's Place>) but why can't I see it in the form.

View Replies View Related

Send A Form Back From An Asp Page

I have a html form which allows the user to select add, delete, update or view from a drop down list. Their choice is sent to an asp page.

My problem is how to send them back a form from the asp page depending on their choice and send the resulting input to the same asp page again for processing.

So if they choose 'add' from the html page then that is sent to the asp page and they are sent back another form, to fill out the new record details which is in turn resubmitted to the same asp page to carry out the 'Insert' statement.

View Replies View Related

Send Values From One Page Form To Another

one page displays the values which have just been retreived, and i want those values to transfer to the next page which is a booking page.. Code:

View Replies View Related

Form On Web Page By Email

I have a web page which has a registration form. The user inputs data in the form and I would like to be able to send the entire form contents to an email address (In the HTML format).

What is the best and easiest method to do this? Do I have to capture each element of the form and string it to the body and then send it out in the page or is there any faster way to grab the entire contents of the form entirely and attach to the body?

View Replies View Related

Multi Page Form To Email.

I have been investigating how to create a multi page form in Frontpage that
eventually will allow an emailed result. I can write the asp to "post" from one
page to the next easily enough but when it comes to the last page, I can't
figure out how to email the results. the syntax "response.write" will write to a
web page but it won't fill in the content of am email. I thought of putting the
"response.write" inside the body of a CDO.message but that leads to the next
question...

While looking at threads about the subject I keep seeing that I should use
CDO (or CDONTS) or a third party app like aspmail. All of which, from what I can
gather, use IIS SMTP service to function.
The problem I will have is that I have Exchange 5.5 on the same machine so
the SMTP on IIS won't start since ex5.5 uses that port. I have ex2k on another
machine that I will soon move the users over to so that will free up the IIS
port but I would prefer using the new mail server for this when it is running.
Is there a method for using the ex5.5/ex2k mail system for sending the asp
generated email? or perhaps another technique? I would prefer to just write it
but if I have to buy something I will.

View Replies View Related

Blank Page Running ASP Page On Windows Vista

I've a strange problem with Windows Vista, running an ASP page on local
machine (http://localhost/test.asp), the page does not give me any error but
the asp code is not executed (simple code : <% response.write("hello") %),
it show me a blank page, I think I've put all the setttings correctly, but
maybe I must do something obvious to fix that.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved