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


ADVERTISEMENT

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

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

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

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







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