Send To Queue
Could someone point me to some specificic code which illustrates how to leveraget the [Send to Queue] feature of CDO.....I have looked at www.aspfaq.com but there does not seem to be a SPECIFIC code example on this subject.
I am aslo still unclear as to whether ASPemail from Persits is a better choice than CDO when sending bulkemail below 800?
View Replies
ADVERTISEMENT
I am using CDONTS with winnt and all the sent emails are sitting in the QUEUE directory in c:inetputmailroot.
View Replies
View Related
i am using IIS in windows XP. while sending e mails sometimes, the mails are delivererd instantly but at times after a day or so. is it due to a large files in the queue folder under mailroot? can i delete these files?
How can i send sms in ASP???
View Replies
View Related
Does anyone know of a way to be able to take 10 urls which point to zip files and then for it to download them one by one, i.e. when one has finished to then begin the next one.
This is for an asp site which is why i posted it here, but i am not sure where to post this as i dont even know how to go about doing it.
View Replies
View Related
I'm running a mailing list which has grown to around 5000 recipients. I'm currently using ASP to cycle through a database of recipients to send each a custom email with their name, unsubscribe link etc.
Currently I'm using CDOSYS to send the mail, and have set up a page to trigger the emails in batches of 50 so that they don't create blockages on the mail server.
Is it possible to queue emails with CDOSYS, since this would mean I could fire all the emails at once, safe in the knowledge that they will all be dealt with without a problem.
I've used the ASPEmail component before which does this, and it was very effective, but sadly it's not an option to use it on this domain.
View Replies
View Related
My ASP code is:
<%
dim mailComp,mailObj
mailComp="CDONTS"
set mailObj = Server.CreateObject("CDONTS.NewMail")
mailObj.BodyFormat = 0
mailObj.MailFormat = 0
mailObj.From = "Didem.Gultoprak@vestel.com.tr" 'sadece bir örnek
mailObj.To = "Pinar.Gokcen@vestel.com.tr"
mailObj.Subject = session("admin")
mailObj.Body = request.Form("comments")
mailObj.Send
set mailObj=nothing
response.Write("mail sent")
%>
but no mail comes to me.All mails stored in Queue folder in MailRoot.
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 working on a classic asp site and am having sending mails in my development environment.
In attempting to use CDO.Message the emails usually (but not always) get stuck in my mail Queue folder.
View Replies
View Related
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. we are running with win 2000 server, SMTP, IIS, creating the pages with ASP.
View Replies
View Related
I can send email using C# and SMTP, but keep closing the connection before
the .eml file has left the Queue folder. The length of time the .eml file
stays in the Queue folder is dependent on the size of that file; big or many
attachments increases the time.
If I start an internet connection, issue the smtp mail send and then close
the connection in my C# program, I need to wait until the .eml file has left
the Queue folder. Otherwise, prematurely closing the internet connection
causing IIS to abort the send.
How can I detect that the .eml file has left the Queue folder?
View Replies
View Related
i am trying harder to mix this 2 solutions... but without success... the below on seen to be grabing a template and replace the data with the values posted in a form Code:
View Replies
View Related
I am trying to work out an email sending page. I got my SMTP installed and running. I have set the properties of relay to "All excepted the list below". Running windows 2000 server. Code:
View Replies
View Related
I've been researching how to send text messages and ringtones to cell phones. I've found out that one way is to use ASP which I can handle a bit. Thing is that it seems that you have to subscribe to a pretty costly service that will transmit your messages.
The only exception I've found so far is http://smsonweb.www1.dotnetplayground.com/ksms.asmx?op=SendSMS but it doesn't seem to work.
Does anyone know of any other free services for this or where I can find more info.I'm not looking to develop any commercial software just to learn something new.
View Replies
View Related
How can I send a sms from my asp page.even i don't know whether it is posiible or not.
View Replies
View Related
I want to send fax from my asp pages. Is it possible. If yes how to send it.The fax no has been stored in the database.
there is one url but this code is giving internal server error something replicate data.
View Replies
View Related
Does anyone have an example of ASP streaming XML? Can I set content headers to indicate the page returns XML? Can this XML be a string or must it be prepared with DOM? I need to create an ASP that queries Access and Oracle,combines the data and returns it as XML.
View Replies
View Related
I want to know something about how to send sms trough ASP,Any help regarding this very much appreciable,If some one have the Sending SMS Script then let me know.
View Replies
View Related
I do not get a error msg, but my sms is not send out. Code:
View Replies
View Related
I Want to send email but i couldnot make plz help send both asp and html form
cdonts,aspmailer,aspmail
View Replies
View Related
how can I use a mail.to or mail.addaddress with a request.form() ?
I mean, ill get an error if i code:
mail.to request.form("friend")
how can I code it?
View Replies
View Related
I have the code for the sending mail but i do not know to loop it. I have been given specification saying that i should send mail after registration and deregistration.
so i have a asp page given the action function of the register form so the page updates the registration done. so i given after registration the send mail code and want to have the loop or condition for the mail to be sent to the person who updates registeration
and code is as follows....
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY> .....
View Replies
View Related
I'm 99.9999999999999999999% sure there haven't been any code changes, since the date stamps of the code are older than any email 'failures'
The email piece quit working using the mail.send. If there haven't been any changes made to previously working code, where do I look for the problem now? I restarted the SMTPservice in IIS. Our real email is hosted remotely, I checked with the admin and she said no changes were made, i.e., not blocking port 25 traffic from the gateway.
I guess this isn't ASP specific, but any ideas how to troubleshoot this?
View Replies
View Related
I'm new with asp and server thing so if somoene could help me to resolve my problems
it would be very great.
I'm trying to send myself an email but it doesn't work, no error message, I just don't receive any email.
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="bob@hotmail.com"
myMail.To="bob@hotmail.com"
myMail.TextBody="This is a message."
myMail.Send
I'm using IIS at my home to test this code.
View Replies
View Related
I am sending mail from ASP program. My server is win 2k, IIS 5. SMTP
server is configured.
I am generating a report(purchase order) and the same sending as an email to
the supplier. upto last week it was sending well. Now its returning bounce
mail.
in the c:inetpubmailrootadmail contains the file(.bdr). The contents of
the file are ....
View Replies
View Related
I would like to know how can i nodify some users which are into my databese with an e-mail? How can i sent to them an "automate" e-mail using VB script.
View Replies
View Related
I tried the code given in this site,
<%
Set Mail=Server.CreateObject("CDONTS.NewMail")
Mail.To="rashwathama@yahoo.com"
Mail.From="rashwathama@yahoo.com"
Mail.Subject="Just testing my script"
Mail.Body="Hey! I am sending this email through an ASP Page and guess what? I
haven’t learnt much yet, but know that ASP is very powerful."
Mail.Send
Set Mail=nothing
response.write "DONE"
%>
But it did not work
I use Windows 2000 Server and Internet Information Service (IIS).....
View Replies
View Related
Our local educational host doesn't have any COMs on their servers so I need
to use the built-in (if there is one!!) mail/smtp component of ASP.net to
send web form data via email.
Is there such a thing in ASP.net? My apols for the newbie question, but I'm
still an ASP classic developer.
Could somebody post me an example of how to use it.
View Replies
View Related
We currently have a form that is in PHP that after the user fill out the form and hit submit, this form send all the information via email to us. I like to know if there is a similar feature or way to do this in ASP.
View Replies
View Related
using the code below is how to send email using asp;
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="martialdc@hotmail.com"
myMail.To="amboy416@yahoo.com.ph"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%>
but i encounter this error;
There is a problem with the page you are trying to reach and it cannot be displayed.
attached with this thread is the file (send.asp) so that you can check it for sure.
View Replies
View Related
I am trying to develop a web site which involve in log in n to retrieve password. When a user forget their password they will use this service, after they enter their email address, i will send their user id and password to their email which allow them to see their user id and password, but i don know to to do this service which will automatically send email to user email address when they click the button .....
View Replies
View Related
I've got an asp page that uses CDO.Message and
CDO.Configuration to send an email.
I'm not receiving any of these emails normally (i.e. in
Outlook), instead they all end up in this folder :
Inetpub/Mailroot/Queue.
Could someone please explain what this means? Does this
mean the emails have been successfully sent?...or are they
waiting to be sent?
I'm pretty sure my smtpserver name is correct because i've
got the same thing going in .NET and it all works ok there
(as in I get an email thru Outlook). Just can't seem to
get it going in ASP.
Not sure if it this relevant...I'm behind a firewall, so
i'm assuming the smtpserver name is for a smart host,
which is fine in .NET, but i'm not sure how that'll work
out in ASP (eg. what do i set the serverport number to?)
View Replies
View Related
Anyone have any pointers as to how i could get asp to send some simple emails?
View Replies
View Related
I've just downloaded a component called AspEmail (http://www.aspemail.com). When i tried to test my code using the localhost, it require sthe address of my SMTP server inorder to send the email.
I put "localhost" as the address but i cannot send the mail for some wierd reason. I check the badmail folder just to find some mails under the "queue" folder.
I've tried the same code in a different pc, and i got a different error: AspEmail: Simple.asp
Error occurred: Connection timed out.
Does any body know how to send email using that aspemail component on localhost
Appreciate it.
View Replies
View Related