ASP Form Mailer
I have attempted to write an .asp script to post form data to my e-mail, however when I tried to move it into a separate file, I no longer receive it... or it might be the for..next loop I tried to use. Code:
View RepliesI have attempted to write an .asp script to post form data to my e-mail, however when I tried to move it into a separate file, I no longer receive it... or it might be the for..next loop I tried to use. Code:
View RepliesI have only dundas and the free softartisans.com mail installed on my server.
Am wondering, who i could run mailer script that supports both html and graphics ?
I have an asp form mailer. when the form is submitted, it goes to a review page where the user can submit the mailer or print it out. the review page pulls the cookie information in fine. after its submitted, i get an email that just says:
Submit: Submit Form
here is the code on the review.asp page that brings in the code.
Code: ....
How do I convert this ASP mailer script to accept and mail multiple fields of a form. This will do one field only )iMesg.TextBody = Request.Form("body") and it works great. Code:
View Replies View RelatedI currently have a CGI mailer that is running but not executing mail because there isn't an open relay between the mail and web servers, if I was on unix and had sendmail I would be right I think.
Now Im looking at going down the ASP route, would I need to open up a mail relay to get an ASP mail script to send mail? In this configuration?
I am running this on a Windows 2003 machine and looking at CDONTS.
I am having a heck of a problem getting this script to email correctly. A form generates all the values, and the script sends off confirmation email- except I don't get any of the confirmation emails I don't get any errors either. I've tried multiple email addresse
(in network, out of network, etc.)
Here is the code: ....
I tried sending a mail with an attachment . I am able to attach a .jpeg as well as .pdf file to the mail but the prob is when i try to attach and send a .doc file . i am storing the path of the file selected thru a browse option and then attaching that file to the mail with mailer.addattachment. It gives the correct path but does not attach the .doc file.
View Replies View RelatedI know that the SMTPsvg.Mailer component is used to send mails from ASP
Page.
Can any body tell me where can I get the Component for download or Do I need
to purchase the component?
Is this Component is better than CDO ?
I have entered the following code and it works fine. The domain names and e-mail addresses have been changed to protect the innocent.....
View Replies View RelatedI tried using the one listed here http://www.aspfree.com/c/a/ASPCode/...rom-a-database/ but I keep getting an error which I've posted but haven't found an answer for yet. Does anyone know of any other one that I can use. I basically want to be able to pull a list of the emails out of my db and send an email to those addresses.
View Replies View RelatedI have used Mailer successfully on websites before. This time, I am trying to run my Mailer code on localhost, with IIS. This line, which in general works, is now generating an error message:
set Mailer = Server.CreateObject("SMTPsvg.Mailer")
What I've tried so far:
set Mailer = Server.CreateObject("SMTPsvg.Mailer")
set Mailer = Server.CreateObject("CDONTS.NewMail")
set Mailer = Server.CreateObject("localhost")
I don't know if I should be trying something else, if I have to do something beyond the actual code, or if it is simply not possible to have mailer working on iis/localhost.
I'm using a block of ASP to allow a user to send a form via e-mail. However, someone keeps sending me spam through this form and they're using a bogus return address. I'm testing for a successful send, which should fail if the return address is not valid, but I'm still getting the junk.
The block looks like this:
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.RemoteHost = "smtp.xxx.com"
Mailer.FromName = Request.QueryString ("Name")
Mailer.FromAddress = Request.QueryString ("Email")
Mailer.AddRecipient "Web Mail", "PCT2@xxx.com"
Mailer.Subject = "P.C.T. E-mail"
Mailer.BodyText = UserString
if Mailer.SendMail then
Response.Write " - Sucessful - "
else
Response.Write " - Failed - "
Response.Write Mailer.Response
end if
Should this block be stopping bogus From addresses? Or do I need to be doing something different?
I am still finding my feet creating a website in ASP, and i'm trying to get
to grips with users providing feeback to my site.
my webhosts have the dundas mailer installed, and i am trying to get it to
work for me.
does it work in conjuction with regular html? can i add a <form> and text
fields? and then will all that get sent with the page? .....
I am trying to send the following HTML mail thru the ASP CDO component.
This is the HTML mail i wanna send from Page 1:
Code:....
I'm looking to manage an email list with SQL server and send out newsletters. Does anyone have an idea of the limitations of sending emails with CDONTS.MAIL object? How long would it take to send out 1000 emails via asp. I guess there are many variables with that, but that's say there were no attachments and we have 15k emails. These news letters really will only be sent once a month or so. But lets say our list grows to 10000 users or even 100,000. Is that a good idea to send 100,000 thousand emails through an asp page? I wouldn't think so .
View Replies View RelatedI am trying to send the following HTML mail thru the ASP CDO component.
This is the HTML mail i wanna send from Page 1:
Code: .....
The code below is for SMTPsvg.Mailer
I need to convert it to CDO.Message
Can somebody tell me what to do?
Do I need to replace eg:
Mailer.FromName = "" with Message.FromName = ""
and
The objects FromName with From?
If that is the case, it's not that difficult accept for I don't know all the objects for CDO .....
Does anyone know how to setup an automatic mailer to members in a database at the end of the month?
View Replies View RelatedI'm developing a newsletter module in ASP... I've worked with two mailing objects
1- SMTPsvg.Mailer
2- CDONTS
Please share your experience and suggest me one of them which one is more efficient. keep in mind that it will be a loop to send mail to two thousand members.
I'm trying out a simple CDONTS mailer and I'd like to see an actual from-name in the received e-mail (rather than the e-mail address). How would this be done??
View Replies View RelatedBasically the way it SHOULD work is a fixed sized window opens and displays two tables. The top table (id=fgWindow) displays the graphics; the bottom table has dropdown menus and text boxes.
I can make every item in the bottom window show up in an email (the Sub Button_Click), however I remain unable to get it to put the contents of the fgWindow table into the body of the email.
My only BIG question is, why won't it put the table that I have ID'd as "fgWindow" in the body of the email when I send it? Code:
The code sends an automatic email, but the email is html format. At the top of the email i want to include an image.
Everything is working except the image is not being included, instead a box with a X appears.
Here is the code that i am currently using
Dim htmlMess ' THIS STORES THE HTML CODE
PHP Code:
Can somebody explain me why I get this error
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'Mailer.Response'
/Mailform.asp, line 284
This is the piece of code it refferers to.....
I´m having a problem using ASP Upload with an insert form..
If I use ENCTYPE="multipart/form-data" the all the parametres i might get with request.form don´t appear.. but i can upload the files.. Besides if I take away the ENCTYPE tag, i can´t upload but the INSERT INTO form works propertly
my form contains two text fields(name, address) and two file field control where user can insert image(photo1 and photo2), i want to insert this data in to ms access when the user submits the form?
this is my code for insert text fields to access data base.but i have no idea about the code for image fields. In my access data base i set photo1 and photo2 as herf (binary data). Code:
I have a form that is dynamically generated since it is populated with values retrieved from a database. The form can of course also be submitted, which is where I run into some problems.
Since I never know in advance what the length of the form (or for that matter what the different elements' names and values) will be I don't know how to write the code in "receive.asp" to retrieve all values from the form correctly without excess use of "request.....".
I shouldn't have to write requests for every single potential element name that is stored in the DB. Please note that the form can sometimes also contain radio buttons and check boxes, even though they are not present in this short example Code:
I have a form as follows:
<form action="dropboxsubmit.asp" method="post" enctype="multipart/form-data">
<input type="file" name="FILE1" size="30">
<input type="text" name="def" value="0" size="10">
etc.....
and can't get my asp to recognize data in other form input boxes using Request.Form
Any thoughts?
In my prototype asp page (with no javascript and no password validation, I have a registration form with the following action:
<form name="form" method="post" action="RegDetails.asp">
This works fine, the form details are collected by RegDetails.asp
I am attempting to include javascript server side validation for the pasword, which obviously requires password and password2 fields (to be verified). I have used the script available at:
http://javascript.internet.com/forms/val-pass.html
It works fine in a new blank page with the form action:
<form name=myForm onSubmit="return validatePwd()">
The final stage in this javascript demo form displays an alert box:
else {
alert('Nice job.');
return true;
When I change the first line of my original form to:
<form name=myForm onSubmit="return validatePwd()">
how do I get my original action of - action="RegDetails.asp" instead of this alert box?
I have a form on an ASP page that has 5 text boxes, for data entry. I am trying to get data from the text box, and pass it to a hidden text box on the form.
The hidden text box is called "MyDateTime" (a SQL date and time value). I am attempting to concatenate data from two other textboxes (one for date and one for time) to give a string like : "8/8/2004 8:00 AM" I am trying to use the following: Code:
I have some ASP server-side code that works perfectly when the client is running on Windows (IE, Netscape, Firefox, etc.) but doesn't work at all when the client is running on Macintosh (IE, Omniweb, Safari, etc.) This is the client-side Javascript code:
View Replies View RelatedIm having problems with my form, separately both forms work perfectly, but having problem sending the email once submitted, however the upload fuction is working fine. The message im getting is,
Request object error 'ASP 0207 : 80004005'
Cannot use Request.Form
/forminfo.asp, line 42
Cannot use Request.Form collection after calling BinaryRead.
Heres the script Code:
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.
<%@Language=VBScript %>
<%option explicit%>
<%
MESSAGE = (Request.Form("type"))
MESSAGE=MESSAGE & vbcrlf & "Name" & (Request.Form("name"))
MESSAGE=MESSAGE & vbcrlf & (Request.Form("address"))
MESSAGE=MESSAGE & vbcrlf & (Request.Form("handphone"))
MESSAGE=MESSAGE & vbcrlf & (Request.Form("phonenumber"))
MESSAGE=MESSAGE & vbcrlf & vbcrlf & (Request.Form("comments"))
MESSAGE=MESSAGE & vbcrlf & vbcrlf
MESSAGE=MESSAGE & "____________________________________________"
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From =Request.Form(email)
objMail.To = "icepricessa@hotmail.com"
objMail.Subject = "Business/Career Enquiries"
objMail.Body = ""&MESSAGE&""
objMail.Send
Set objMail = Nothing
%>
but somehow i'm not able to send the mail....