Getting A CDONT Parameter
My website sends automatic emails from many (25) different places. I want to
send a second email by reading the parameters of the first one. I don't want
to have to repeat and maintain the assignment of the second email
From,To,Subject fields so I am just using an include at each point in the
code where I send an email: Code:
View Replies
ADVERTISEMENT
Can someone show me how to modify this simple code from CDONTS to CDO to bring
it up to date?
It works fine now and maybe I should leave it alone?
<%
Dim t1,instructions
t1 = "Instructions"
instructions = Request.Form("instructions")
Dim ObjMail
Set ObjMail = Server.CreateObject("CDONTS.NewMail")
ObjMail.To = "hwaxman@cox.net"
ObjMail.From = "info@dinghydogs.com"
ObjMail.Subject = "Dinghy Dogs order"
ObjMail.Body = t1 & vbtab & instructions
ObjMail.Send
Set ObjMail = Nothing
Response.Write"Thank You For Your Order"
%>
View Replies
View Related
I have a query in access that i would like to use CDONT's to send out reminder emails. CDONT's is set up on the server so the error must be with the code:
View Replies
View Related
i have to send the mail to all the employees of the company , e-mail address is stored in a table .i m using cdont component to send the mail ,
what are the basic requirement of cdont
how to install cdont on server 2000 and is it necessary that smtp server shoud be installed or enabled on that server or it can be on other server .
actually , where i m developing this software , tech support said , the server on which i m working smtp on that server is not installed , it is available on another server , is it possible
View Replies
View Related
I am planning to use ASP code for the emailing system, and wanna use CDONT, is that possible to use free webmail (like hotmail, yahoomail,etc) for the "sendFrom" section? or is that possible if I use my own normal POP3 email, but the web hosting service I use is from other provider?
View Replies
View Related
Is it possible to extract from a CDONT a value that has been added to it?e.g. can I say:
MyCDONTSMail.From="some email address"
MyCDONTSMail.To="some other email address"
MyCDONTSMail.Subject="some subject"
MyCDONTSMail.Body="some body"
And then get those values later in the program e.g.:
MailFrom = MyCDONTSMail.From
MailTo = MyCDONTSMail.To
MailSubject = MyCDONTSMail.Subject
MailBody = MyCDONTSMail.Body
View Replies
View Related
I am trying to send an email with the values from a form. I want to send the text field values as paragraphs on the email. It comes as one paragraph and there is no break.
View Replies
View Related
I keep getting permission denied error when I do objCDO.Send. I know that there is a permission that has to be set to allow this to happen but i don't remember.
View Replies
View Related
Hi what is wrong here?
<%
Dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail")
MyMail.From = email
MyMail.To = "myemail@site.com"
MyMail.Cc = ""
MyMail.Bcc = ""
MyMail.Subject = "Message From Contact Page"
MyMail.BodyFormat = 1
MyMail.MailFormat = 0
MyMail.Importance = 2
MyMail.Body = message
Set MyMail = Nothing
%>
Its not working (dont worry I specified the right email)
View Replies
View Related
I am just developing intranet site for some company, which have internet connection 24 hrs.
Now I have one asp page which ask for feedback if user wants to give, which in turn comes to my mail account.
If some one can guide me in this situation what configuration I should set for the intranet Site on IIS 5.0 (Win 2000) to workaround this problem.
The code which I am using is by creating object of ....
View Replies
View Related
i have to send the mail to all the employees of the company , e-mail address
is stored in a table .
i m using cdont component to send the mail ,
what are the basic requirement of cdont
how to install cdont on server 2000 and is it necessary that smtp server
shoud be installed or enabled on that server or it can be on other server .
actually , where i m developing this software , tech support said , the
server on which i m working smtp on that server is not installed , it is
available on another server , is it possible?
View Replies
View Related
i have windows 2003 web edition dedicated server i have tried all type of formail scripts to process form but nothing is working,I tried cdont script not working i tried to get cdosys scripts but i cannot be able to get i search at my server there is cdosys.dll file but i dont know its installed or not but there is no cdont.dll file. plz solve my problem, other asp pages are working properly but any type of asp formail scripts are not running
View Replies
View Related
I have a html form. When it is submitted, an asp page retrives all the data and sends the data to my email id. It is working well when the form data is in English. When user fill in the form using Thai language and submit, as sends some junk. How can i fix it?
View Replies
View Related
I copied a CDONT form from a simple request page I use on another web-site and made it more complex (or simply longer), but I am not receiving the emails anymore.
It takes the form and moves on the request received page without any errors, but the email never arrives I changed the email and I moved the form to a different server to no avail.....
View Replies
View Related
I'm generating HTML formatted emails in my asp program using CDONT. Depending on hoow ling the link is it will sometimes wrap and ruin the link. The is Detail email properties listing : Code:
View Replies
View Related
I send HTML formatted emails with links and images in them generated by my asp driven website. Occasionally the image will not appear and the link will not work. By looking at the email at the receive end, (right click/properties/details/message source, this is what I sent: .....
View Replies
View Related
How can i pass parameter in ASP with hide
ex : default.asp?id=9
i wanna be : default.asp but the id still follow the page
View Replies
View Related
I would like to get parameter of ASP script in URL. example : /localhost/example.asp?parameter1 . How can i to get this parameter ?
View Replies
View Related
I am trying to pass three parameters using this code in an asp page to an
xsl page. I keep getting the following error:
Microsoft VBScript runtime error '800a01a8'
Object required: ''
/account.asp, line 114
Any ideas what I am missing? Code:
View Replies
View Related
A MS-Access database table has 2 columns - UserID (unique) of number data type & UserName (text) along with some other columns.When users come to a particular page, say, AllUsers.asp, all the UserNames are displayed to him as hyperlinks. Based on the UserName
clicked by a user, the next page (to which the user will be taken to when he clicks any of the UserNames) will display more information about that particular UserName (which the user had clicked).Assume that the page where more info is displayed is named UserInfo.asp.
(Note that the info will also be retrieved from the DB table).
UserInfo.asp will also display the UserName the user had just clciked in AllUsers.asp.
Now for UserInfo.asp to retrieve data about the UserName the user has just clicked, I can make the links in AllUsers.asp pass the UserID as well as the UserName as a querystring value. Now whcih one will be more efficient - sending the UserID as the querystrinng value or sending the UserName as the querystring value?
View Replies
View Related
I can call a user document with a paramer in the IE Address bar eg:
C:Program FilesMicrosoft Visual StudioVB98docMyDocument.vbd?Parameter
I can call the Userdocument using these lines of code in ASP:
Sub Window_OnLoad
Navigate "docMyDocument.VBD"
End Sub
I have beed trying to pass it a parameter with the following syntax :
Navigate "docMyDocument.VBD?Parameter"
This does not seem to work. How do I call the userdocument in ASP with a parameter ?
View Replies
View Related
I am using Crystal v7. Main report and subreport are both based on the same stored procedure. How do I pass parameters to display the report and subreport in the Crystal viewer. I can display regular (non-sub) reports fine.
View Replies
View Related
I got a problem returning parameter. I am storing date using datepicker to choose my date. But when i want to delete it from the table because date is one of the primary key. it has problem when i retrieved it because it is recognized as datetime but when it display it's a text. i need 2 convert from text to date. how would declare my parameter then?
View Replies
View Related
I am using Ultradev to develop asp pages with Access database. With the help of some online friends & tutorials i am studying this. I need some help for the following. I am having 2 tables,
Table 1 with Company Name & Country Code
Table 2 with Country Code & Country Name.
When some one searches for a company, it should display me the Company Name along with the Country it belongs. Someone told me that it can be done by passing a parameter value from one recordset to another on the same page, but i dont know how to do this.
View Replies
View Related
myGetImage.asp is suppose to create a temporary file in the client side, and display in on the client web browser. myGetImage.asp needs to know the clients web browser temporary system path, in order to create the temp file. How do I get the parameter and value of clients web browser temporary system path?
View Replies
View Related
If a com is being used at two diff places and it requires same number of inputs how can we pass inputs if number of inputs are not same on every page.
View Replies
View Related
Is it possible to do a quick check to see if you were refered to the page with URL parameters and if so perform an action?
View Replies
View Related
I 'd like to print out all posted parameter names and values. I'm able to print all the posted request values, but not the parameter names.
View Replies
View Related
I am trying to pass some paramters from a VBScript function to a script that writes the parameters to a text file. I have not been able to do it. Code:
View Replies
View Related
I've taken over the development of a web app written in ASP. It's not
very well coded. In the live environment it's fine, but on my local
machine it falls over whenever it tries to pass a date to a SQL Server
sproc. No idea why the person before me's been doing all this string
formatting with his dates, but anyway, the error is:
Application uses a value of the wrong type for the current operation.
The dates throughout are in mmddyyyy format, and presumably ADO
running on my local machine wants ddmmyyyy. I'm rebuilding the whole
app in C#.Net anyway so I don't think it's worth me running through
and making this jumble of code international date friendly, so my
question is, where exactly is the date format for ADO defined?
Windows? SQL Server?
View Replies
View Related
I am new to ASP.NET 2.0 and I am developing a small application which
originally consists of 2 pages. The first page displays a GridView Control
loaded with data from a sqlDataSouce. Such a GridView has a field that is a
hyperlink to the second page which is supposed to display the detail of the
record.
What I want to do is to send a QueryString Parameter to the second
page with the key to retrieve the record selected and show the information in
detail (a long description, a picture of a product, comments, price, etc.).
I have not written a single line of code (code-behind) for the first page.
How can I get the second page and send the querystring parameter?
View Replies
View Related
This works:
Server.Transfer("testimonials.asp")
This does not
Server.Transfer("testimonials.asp?somevar=yes")
View Replies
View Related
I read somewhere that server.transfer had a 2nd parameter so control and input values were 'passed' to the transferred to page, but it's giving me an error of wrong number of parameters. I have IIS5, is that the problem? or is it that it's an ASP page (not ASPX)
View Replies
View Related