|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Help with email using cdonts on ASP
HI, my name is Adolfo, We have a server with an Intranet, it handle the contract forms we want to send the contracts forms by email but the emails are stuck on the queue folder any one could help us pls..
we are running with win 2000 server, SMTP, IIS, creating the pages with ASP. Last edited by eyebird : September 23rd, 2003 at 02:14 PM. |
|
#2
|
|||
|
|||
|
First off, you should use a better subject than "help" next time. It's not very descriptive and most people won't even look at your post because they dont' know if they can help. Read the "How to post a question" post at the top of the board for guidelines on posting.
Now yo your problem. Are you sure that you SMTP server is running. Go into the IIS console and make sure the services has started. If you have Run the iis lockdown, it may disable to smtp server depending on the options that you sent. If you have run it, you'll have to run it again and enable the smtp service. Also how are you trying to send your mail? How bout a little code Snippet? |
|
#3
|
|||
|
|||
|
hi imbrokn, well im triying to sending mail throught asp with CDONTS the code is:
dim obj set obj = server.CreateObject("CDONTS.NewMail") response.Write(server.MapPath("/sistema/icons/espere.gif")) obj.to = request.Form("txtPara") obj.from= request.Form("txtDe") obj.cc=request.Form("txtCC") obj.subject=request.Form("txtAsunto") obj.bodyformat=0 obj.mailformat=0 obj.body=request.Form("txtMensaje") obj.send now I think is not the code I have restarted the SMTP but it still without work, I´ve tried with another components like AeMail (wich dont use SMTP)and still without work or with w3jmail. It is necessary to have a configuration TCP? we just have ip. there is another question we have a domain but is not the server do we need it on the server? |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ASP Programming > Help |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|