Mails Sent Out Only When The Server Is Restarted. Why It Is Not Instant??
I used CDONTS to send out mails from my PC. Its able to send out only when I restart my PC. Whenever I sent a mail through asp page I can see the mail in the Inetput/mailroot/queue folder but they are not sent out until I restart my pc. What should I do in order to send out my mail instantly??
View Replies
ADVERTISEMENT
Im attempting to grab results from a stored procedure and toss them in a recordset. Unfortunately, I cannot open a recordset that can move forward and backward. I have tried to simply chance the rs.CursorType but this results in a connection timeout..
Code: ....
View Replies
View Related
Does anyone know of an simple/cheap Instant Messaging add-in?
View Replies
View Related
i am looking for a instant messaging like msn or icq for my site in asp.. (a chat system but like instant messaging for my site)
View Replies
View Related
I've looked all over the www for an answer to this, but all I have found was an example on 4guys to send IM's. The problem is that they use Application variables. Is there a way to connect to existing IM services such as MSN and send IMs?What I want to do is send our CSRs an IM when their manager assigns a job to them through a management console I built.
I saw some stuff on Toast pop-ups with .NET on windows messenger service, but that's a little too deep for me. I would love to implement something like this, but I suspect that sending IM's through the Internet isn't going to be an option because of the spam implications. You can get server software like sharepoint to handle this type of stuff, but cost is a limitation.If there is an alternative solution, I would love to hear it. I am also open to .NET options as well.
View Replies
View Related
help with designing a chat system for my website? I have been looking for good tutorials in the net but so far, I have not found any.
View Replies
View Related
I 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.....
View Replies
View Related
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 Related
I have emails sending no problem on other sections of the site but the following piece wont send
Where email is stored with a email variable from stored procedure i tested it and the value is the.....
Dim RegMail
Set RegMail = CreateObject("CDO.Message")
RegMail.From = "somone@gmail.com"
RegMail.To = email
RegMail.Subject = "ISM Mock Theory Test"
RegMail.TextBody = BodyText
RegMail.Send
Set RegMail = Nothing
View Replies
View Related
Is it possible to generate private key and afterwards apply the CA digitaly signed certificate within CDO code so I can send signed e-mails?
View Replies
View Related
I want to write a code for sending mails using CDO object in ASP. can it is possible to send mail without mentioning name of smtp server.I am using 2k3 O.S. Also one more problem i am facing , i want to send a mail in HTML format, when receipient receive that mail some times it shows in proper HTML formated mail but some times it not showing(it just shows html tags in mails) . I am using .htmlbody property of cdo object.
View Replies
View Related
I have done a ASP Prog where when the user submits the form an email is sent to the resp person.The problem is all the mails are going and sitting in the mail folder and are not moving from there to the mail id's. Can anyone tell me what i would have missed? Code:
View Replies
View Related
I was just wondering what the requirements are on my computer system if I want to be able to receive e-mails (to my own mail server and not through the mail server of my ISP). I already have a functioning SMTP-server, but I guess that only works for outgoing mails, or is there maybe a way I can send mails to this SMTP-server?
Do I need a fixed IP-address? Do I need so kind of special software like Win 2003 server or maybe Exchange Server? Do I need my own domain name? Anything else I need to bear in mind if I want to have my own incoming mail server?
View Replies
View Related
I have a code to send an email in my asp application. But if i send a
mail through this asp code i am not to get the trademark((tm)) symbol in
my subject line.
View Replies
View Related
how to send mails through ASP. I know it can be done through CDO or CDNTOS objects. But it is not working. Is there any settings i have to chage for it? I am using Win2000 prof. Server IIS.
View Replies
View Related
I'd like to be able to write an ASP page that users can enter requests in. When a new request is entered, the page would e-mail a list of recipients and inform them of the new request. I've never done this and really have no idea where to start.
View Replies
View Related
I am looking for a way to read & download my e-mails from my pop3 account from another server by using ASP(vb)
If you know anything about this subject please feel free to let me know. I learn how send but not receive.
View Replies
View Related
Can somebody tell me, How can we send e-Mails with ASP without using CDONTS?
Because some one told me that, it's possible to send e-Mails without using CDONTS. But i don't know how.
View Replies
View Related
Could you be so kind and gives me a function which creates mail in ASP language. But I would like to create a mail with ENTER breaklines and I would like to have background changed, bold fonts, so I mean to use HTML code to create such mails. Is it possible in ASP?
View Replies
View Related
i want to know that how can i send automatically daily newsletter to my users.
i have started a newsletter service recently and want that everyday newsletter from database shall be sent to the users.
i also want to send newsletter on particular date in future as per selection made by the users themselves.
View Replies
View Related
I have read many posts suggesting how to solve the infamous email problem. now I get this error: error '8004020f'
but not when I send mails to myself. It works just for my email adress. I really don't know what to do Code:
View Replies
View Related
to some mail accounts, I can't send mails to them?Whoes fault is this?
the part of code is as follows.
<%
set mail=server.CreateObject("cdonts.newmail")
mail.To=aaa@aaa.com
mail.From="system@aaa.com"
mail.Subject=today & " New Messages"
mail.Body="<html><body><a href='http://admin_main.asp'>go message
board</a></body></html>"
mail.MailFormat=0
mail.BodyFormat=0
mail.Send
set mail=nothing
%>
View Replies
View Related
I have a cable modem and an isp that blocks outgoing traffic on port 25.I have a form that should generate an automatic e-mail response to the page visitor when submitted.
Now I wonder if it is possible for me to have this function in my asp code if my ISP blocks port 25 or if the generated e-mail will just dissapear in cyberspace?
View Replies
View Related
I am writing an ASP page for sending mails using CDONTS component. Is there any way to capture errors if the components fails to send mails?
View Replies
View Related
how can I send two emails with different messages to different users? Do I need to have two .asp files? or I can do it just in one? If yes, how do I set the obCDOMail.Body to get the value of two different variables?
View Replies
View Related
I am running my information pages from access database, using ASP - This database includes an email field, i would like the subject in the email to have an automatic title.
View Replies
View Related
hav been using serverobject sendmail for close to 5 years but recently giving strange errors. SO for the time being decided to use this code ...
View Replies
View Related
I'm sending out the newsletters using ASP Cdonts. It is fine for few number of mails say about 20. When I started to mass mail say about 200 at a time all the mails got stuck in the queue folder (Now totally 1000 mails got stuck up). Then from my service provider I got the info that the mass mails will be stopped if they are more than 99.
View Replies
View Related
I'm trying to write a Function/Subroutine to send e-mail. I want it to create this to be used as an Include file so I can just give it the info and it will send the e-mail.
The following code works, but is now portable:
<!--METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB-00C04FB1625D" NAME="CDO for Windows 2000 Library" -->
<!--METADATA TYPE="typelib" UUID="00000205-0000-0010-8000-00AA006D2EA4" NAME="ADODB Type Library" -->
<% @LANGUAGE="VBSCRIPT" %>
<%
Option Explicit
Response.Expires = 0
%>
.........
View Replies
View Related
My requirement is to read the inbox mail from remote mail server. In my local machine I don�t have any IIS, Exchange server. I am running ASP page using SUN ONE ASP Server, for sending mail I am connecting remote mail server using CDOSYS. Now I need to read the mail from inbox folder. I am not able to read the inbox mail from remote mail server.
I don�t have IIS/ Exchange server in my local machine. I need to read the mail from remote server. Is it possible?
View Replies
View Related
I got a little problem while sending HTML e-mails with CDONTS.
I generate my e-mail body without problems into a string variable. When I
display it to the browser via a "response.write", it's OK, including images.
Then I set this string variable to the CDONTS.Newmail object (body
property), and I send the mail. Code:
View Replies
View Related
I am developing an ASP application over IIS5.0 over win2kproffesional. In our organisation we use Outlook along with MS-Exchange for Email communication.
Now, i want to build an app, to send mail. I am using CDO for Windows 2000.
Following is summary of my CDO.configuration ....
View Replies
View Related
I want to send e-mails from my asp pages but don't know how to achieve that. I have tried to create CDO/CDONTS server objects but without luck. I guess I don't have SMTP installed or not configured appropriately.
Can you help me here? What do I need to do (and if complicated how is it done) to get an SMTP server up an running?
View Replies
View Related