CDONT And CDOSYS Not Working

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


ADVERTISEMENT

CDONT Mail Not Working

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

ASP Email Form And CDOSYS Ain't Working

I contacted my hosting people and they said they're running Windows 2003, which uses CDOSYS and not CDONT. So, I followed the advice on the sitepoint site for converting to CDOSYS and have concocted the following script: ....

View Replies View Related

CDONT To CDO

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

CDONT's

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

Cdont

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

Cdont

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

CDONT

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

Paragraph Using CDONT

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

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 View Related

Cdont Problem

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

CDONT Mail Object

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

Email Using CDONT Component

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

How To Receive CDONT Email In Thai

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

CDONT Form Is Not Sending Email

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

CDONT Line Wrap Problem

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

CDONT And HTML Email Line Wrap Problem

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

Use CDOSYS

how to use CDOSYS... i am getting pain by changing my servers

View Replies View Related

Cdo, Cdosys

I am desperately trying to install a login script for my website. I keep getting this error:

error '80040211'
/register.asp, line 88

Here is what is on line 88:

objCDOSYSMail.Send

i spoke with my hosting company - they said CDOSYSMail.Send and objCDO.Send are the same thing and if one is supported they both are - is this true?

I don't know what to do to get this working. It's a remote SMTP, but they have assured me that isn't an issue because I have the correct outgoing SMTP info in place (Verio hosting)

View Replies View Related

Cdosys

How can i create an form in CDOSYS to send an email?

Win 2k and NT used CDONTS, but XP does not support it. Does anyone know how to utilise this using Win XP Pro with IIS version 5.1

View Replies View Related

From Name In CDOSYS

I know with CDOSYS there's a objMail.from class, but this is for the From email address of the sender, not the From Name. Is it possible to assign a from name and from email address as seperate values?

View Replies View Related

CDOSys

I have an asp registration form, generating a html email, using cdosys.
When a hotmail user registers they receive an empty email or so it
seems, until you forward the email then the contents appeas as if by
magic. Is this a problm in the way my asp page is generating the email
or is it a settings issue with the hotmail account

View Replies View Related

Using Cdosys

I have allready posted my problem at this forum and i got replies too.But they suggested me using cdont or cdo component for win 2000.But my os is XP
professional and it contain CDOSYS component for sending email in asp.Plz provide me solution a/c to Windows XP Professional CDOSYS component

View Replies View Related

Help CDOSYS

I keep getting this error when my website tries to create an object to send an email for the checkout email confirmation: Error creating object: 006~ASP 0177~Server.CreateObject Failed~800401f3. Do you have any idea of the reasons this could happen? I had an engineer configure the software for CDOSYS, and this is what he said: Andrew, I’ve replaced all the files and I still get the same error message. So this leads me to believe that we’re looking at the wrong site or where I am publishing to the wrong location. Either that or the host is doing some sort of an ASP caching.
I don't see how he could be publishing to the wrong location; i gave him the right ftp info. Do you know what an ASP caching is, or do you have any clue what i could do to try to fix this problem, or where this error came from in the first place?
URL URLI was told by somenone that the object is not installed and registered properly. Does this mean that the dll for CDLSYS is not installed server side, or that the error is a function of my server not being set up right?

View Replies View Related

Cdosys

I am getting this error, but have no attachment code!! What other paths could it be looking for. The only one I have is:

.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirectory") = "c:inetpubmailrootpickup"

View Replies View Related

CDOSYS

i am using CDOSYS to send mails to the users from my application. Everything is working fine, mails are being sent to the user but in the mail the user receives, some extra characters such as '!' or spaces are coming between words. I tried defining a character set but still the problem exitss.

View Replies View Related

Cdosys

Does CDOSYS have all the same methods and properties that CDONTS does? I need to know 'cause I just put XP on my box and I heard CDONTS has been deprecated since Win2k anyway.

View Replies View Related

Cdosys

I am having difficulty with the cdosys for windows 2000, I can't seem to find a method that allows me to attach a file, I have been searching msdn and the page I needed was not available.

View Replies View Related

CDOSYS

Using CDOSYS to send email:

Code: ( text )

View Replies View Related

CDOSYS

I was using CDONTS to send ASP forms. They used to work fine, but now it seems that my webhost provider (not to mention some others), are changing the fotmat from CDONTS to CDOSYS. I have been looking at some of the examples, but they seem confusing. So, my questions is this...

What is the easiest way? I am more concern with the collection of the data from the form's fields. What is that I have to do in order to be able to collect the data sent from the fields?

View Replies View Related

CDO Take Two CDOsys

I have a form that I use to send an email using CDO. When I submit the form, it brings up a blank page and no email is sent. Can you look through the code and see what's wrong?

View Replies View Related

Email & CDOSYS

does anyone know why the code below wont work ?

It doesnt thow any errors, but no email is being sent!

'--------------------------------------------------------------
'-------- now use CDOSYS to send email because im using IIS5.1
'--------------------------------------------------------------
Dim objConfiguration
Dim objFields
Dim objMessage
Set objConfiguration = CreateObject("CDO.Configuration")
Set objFields = objConfiguration.Fields
With objFields
.Item(cdoSendUsingMethod) = cdoSendUsingPort
.Item(cdoSMTPServer) ="localhost"
.Item(cdoSMTPServerPort) = 25
.Item(cdoSMTPAuthenticate) = cdoBasic
.Update
End With

Set objMessage = CreateObject("CDO.Message")
With objMessage
Set .Configuration = objConfiguration
.From = "mark@mark.com"
.To = "mark-wheeler@tiscali.co.uk"
.Subject = "Here comes a Subject"
.TextBody = "Here is a text body"
.Send
End With
Set objMessage = Nothing
Set objConfiguration = Nothing

View Replies View Related

CDOSYS: No Email Is Getting Sent

I am trying CDOSYS code to send out email. The problem is when I try to send email to gmail and hotmail account, it never works. Means, no email appears at gmail and hotmail account. But when I send it to yahoo mail, it works.

I run the code at localhost. I use Win XP Pro. I just wonder why this happen.
Can someone explain to me?

Below is the code that Im trying out: ....

View Replies View Related







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