Send Mail Before Form Post
I have an asp page that posts to a third-party site. I need to send an e-mail from this page when the user submits the form but before it posts to the other site.
View RepliesI have an asp page that posts to a third-party site. I need to send an e-mail from this page when the user submits the form but before it posts to the other site.
View Repliesi am trying harder to mix this 2 solutions... but without success... the below on seen to be grabing a template and replace the data with the values posted in a form Code:
View Replies View RelatedI'm using CDO to send mail to the site owner from ASP pages with forms.
Recently one of my forms is occasionally sending email with what seems
to be an insertion which is replacing the plain text part of the email
with something else. Looking at the server sent email source, the
hacked emails have the following:
I am struggling to set up a form that would allow me to recieve an e-mail from someone submitting an e-mail address for my sites newsletter. My host does have ASP and it is enabled on my site. It says there is a problem with line 122 on the thank-you.asp page but I am not seeing it. Click here to go to the page with the form on it.
View Replies View RelatedI have constructed an order form and the users will enter the informtion. I
now need to send the filled out form as an e-mail (body being the HTML with
the fille din data) to a predefined e-mail address. I know how to use CDO. I
don't want to go to another page to recontruct the HTML as the '.body'
I've been racking my brains over this one. I have a Classic ASP edit
form with many fields, one of them a Status drop-down. If the Status
(option value) has been changed to "Pending" for instance, I do a
objMail.send, otherwise it doesn't send.
No problem, but how can I
prevent the mail from sending AGAIN if a user goes back to the page and
updates another field, or even just refreshes the page? If it helps, I
am updating a SQL Server database.
I have this piece of code in an .asp file. I call this file through a form and I send an email
Set myMail=CreateObject("CDO.Message")
myMail.Subject="my subject"
myMail.From=Request("email")
myMail.To="myemail@mail.com"
Dim Body
Body = Body & "Name: " & Request("name") & VbCrLf
Body = Body & "E-mail: " & Request("email") & VbCrLf
Body = Body & "-----" & VbCrLf
Body = Body & Request("the_message") & VbCrLf
myMail.TextBody=Body
myMail.Send
set myMail=nothing
The problem is when I try to fill in the form with greek characters. They appear in the email as ????? or very confused characters with no recovery.
I am working on a script and I have a form to a page to be submitted (POST-ed) to an external site.
I need that when the user submits the form, first step is to send an email using an asp script and only after that to post the information to the web site. I can send the email but I don't know how to post the form automatically after I send the email. I think I can use javascript, but maybe there is a better way of doing it?
I have a simple aspmail form on a site I'm getting ready to launch, and the client has several locations... I wanted the user to be able to choose the location from a pulldown that the form was e-mailed to. Do I have to have a backend processing page for each location and have the pulldown point to it?
View Replies View RelatedI have a form where the visitor should enter the e-mail adress, a password and some additional info. When the form is submitted I want to automatically send a confirmation e-mail to the visitor, containing the information from the form (like the procedure when joining this forum :-)). Is it possible to achieve that with ASP? Would be very grateful if anybody can finish the code below... because I don't know how to handle the variables after I have retrieved the form info..
This is enterinfo.htm.....
I have a form where a visitor can enter som information, in this case the e-mail adress, password and some additional info. As soon as the form is submitted I want to send an automatically generated e-mail confirmation to that user's e-mailadress (like the procedure when joining this forum for the first time). When I have retrieved the info from the form in the "confirm.asp" I don't know what to do....
View Replies View RelatedI need some help: with cdosys i'm able to send e-mail from asp using the local exchange
server. Now I also have to save the sent mail into the user's mailbox for future reference: how to?
I'm using:....
Is it possible to have a form ON submit. Post data to an access data file at the same time send an email of the data submitted. I have a send mail asp script that will create the email and send it. I have a form that will create a record how are they performed together?
To put a screws in the mix. I am using Front page to create the connection between the form and the MDB file. My hands are tied in having to use Front Page.
Let's say if I want to send a http "Post" request to a url, and check the http status code later. How should I write the code? I have found example to use WinHttp to send "Get" request and check the http status code:
======
Set objWinHttp = CreateObject("WinHttp.WinHttpRequest.5")
objWinHttp.Open "GET", strURL
objWinHttp.Send
If objWinHttp.Status <> 200 Then
...
End If
======
How should I write the code if I need to use "POST" to send data in a form, and to check the http status code later?
sending a variable in this way: temp.asp?num= <% = Var %> creates an error , although i can see in the url that the value is added (e.g temp.asp?num=3) is it because the method is post? what should i do so the variable will come throgh with no error!?
View Replies View Relatedis it possible to send info to a page with the post method automaticaly ?
whithout the user having to click the button ?
I have the code for the sending mail but i do not know to loop it. I have been given specification saying that i should send mail after registration and deregistration.
so i have a asp page given the action function of the register form so the page updates the registration done. so i given after registration the send mail code and want to have the loop or condition for the mail to be sent to the person who updates registeration
and code is as follows....
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY> .....
I'm 99.9999999999999999999% sure there haven't been any code changes, since the date stamps of the code are older than any email 'failures'
The email piece quit working using the mail.send. If there haven't been any changes made to previously working code, where do I look for the problem now? I restarted the SMTPservice in IIS. Our real email is hosted remotely, I checked with the admin and she said no changes were made, i.e., not blocking port 25 traffic from the gateway.
I guess this isn't ASP specific, but any ideas how to troubleshoot this?
I am sending mail from ASP program. My server is win 2k, IIS 5. SMTP
server is configured.
I am generating a report(purchase order) and the same sending as an email to
the supplier. upto last week it was sending well. Now its returning bounce
mail.
in the c:inetpubmailrootadmail contains the file(.bdr). The contents of
the file are ....
I would like to know how can i nodify some users which are into my databese with an e-mail? How can i sent to them an "automate" e-mail using VB script.
View Replies View RelatedI tried the code given in this site,
<%
Set Mail=Server.CreateObject("CDONTS.NewMail")
Mail.To="rashwathama@yahoo.com"
Mail.From="rashwathama@yahoo.com"
Mail.Subject="Just testing my script"
Mail.Body="Hey! I am sending this email through an ASP Page and guess what? I
havent learnt much yet, but know that ASP is very powerful."
Mail.Send
Set Mail=nothing
response.write "DONE"
%>
But it did not work
I use Windows 2000 Server and Internet Information Service (IIS).....
Where can i found the source code that allow me to key in myself email address and message and then key in friend's email address, after that my email address will be send out to my fren with my site URL and message that i typed?hope its asp file extension.
View Replies View Related<i><b>Originally posted by : Serno (serno@worldonline.dk)</b></i><br />Iīm using IIS 5 on Windows XP. When trying to send a mail using 'CDONTS.NewMail', I get this error message : <br />ActiveX component can't create<br />object: 'CDONTS.NewMail'<br /><br />Please help!!<br />
View Replies View RelatedI'm using the following script for send emails.Recently, we migrated our server. Everything is working fine. Except the mailing.
<CODE>
set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.RemoteHost=Application("Remote_Host")
Mailer.FromAddress = strFrom
Mailer.AddRecipient "", strTo
Mailer.Subject = strSubject
Mailer.BodyText = strBody & vbCrLf & Application("EMAILNOTE")
Mailer.SendMail
</CODE>
I got the following error
ASP_0177_:_800401f3|Server.CreateObject_Failed
IIS versions are same.
i m creating city checkboxes from database table...so using this client can subscribe for various cites...after submit i m adding all his/her datails into subscription table ...i m adding all selected city into one colums branch_city...and after this i m sending email to corresponding subscription department of selected city....and only one email to client with the all city name he has been subscribed... Code:
View Replies View RelatedI am wanting to know what ways there is to send mail from a form such as CDONTS.NewMail.
View Replies View RelatedI am having an e-mail being sent from a form submitting on a web page.
Right now, it is just a generic name (not a valid e-mail address) in the
Mail From box. "Web Server Request". How can I add a reply to piece to
this, so when a user clicks on Reply, it sends it to a valid e-mail address.
I am trying to send an HTML e-mail that sends a webpage from a website. Couldn't get it to work. I am able to send out the email, but body content does not show up on the email.
Set tMail=CreateObject("CDO.Message")
tMail.Subject="Test"
tMail.From="xxx@xxxxxx.com"
tMail.To="xxx@xxxxxx.com"
tMail.CreateMHTMLBody = "http://www.xxxxxx.com/xxxx.asp"
tMail.Send
set tMail=nothing
Any suggestions?
How can i send an Unicode mail with ASPclassic? I want to send an email in Farsi ( or same Persian ) I use this code but this is ...
View Replies View RelatedI had to write a page in ASP which sends an email. I googled and was able to write the following code:
<html>
<body>
<%
Set Mail = Server.CreateObject("CDONTS.NewMail")
Mail.To = "XXXXXXXXXXXX@XXXXXX.COM"
Mail.From = "YYYYYYYYY@YYYYY.COM"
Mail.Subject = "Test MAIL Subject"
Mail.Body = " Body Body Body Body Body Bodyody Body Body"
If Mail.Send Then
Response.Write("Mail has been sent successfully")
Else
Response.Write("Mail Sending Failed")
End If
Set Mail = nothing
%>
</body>
</html>
When I run this script on a shared hosting server, It's saying "Mail
Sending Failed". I had never written ASP code before and couldn't find
what the reason is.. I also checked whether CDONTS.NewMail component
is available.
I need some free tools that would allow me to automatically send e-mails to somebody acoording to the current date (e.g. if I have a table in a database with some fellows and their birthdays, I would like to automatically send them a greeting e-mail, when their birthday is). I would preffer that tool be installed as a service.
It will be just fine if I will be able to use this tool in an ASP site.
Otherwise, how could I program such a tool (and what language would be the most appropriate)?
Iīm trying VP ASP Shopping cart, but the free version doesnīt allow us to
send an email to our customers and to ourselves with the confirmation of the
order.
I would like to know if there is any code sample or script that can easilly
be included when the invoice appears in the screen, so we can send the
invoice automatically by mail to the costumer to confirm the order and to us
to let us know the order was made!?
I would prefer to work with jmail, but if itīs not possible it can be
another.
How we can build form to send e mail from web site? which component should we use?
View Replies View Related