I know this question is stupid. But i need some advice for this. I
am trying to develop a website, which will allow the user send to order form
to the admin email. I am planning to use the CDONTS component method.
Can I just to localhost server to test, whether the form can be send
up to the admin's email. Or I must have the Hosting server to do that. Can
Anyone suggest me, how to I test my scripts can be successfully run (at
localhost), before I host it on the Web Servers.
I have two forms, one on each page. The user fills the first, then the second, then on the third page all the information is displayed for the user to make sure thats what they want to send.
Then they click submit on the third page and it goes through a database and depending on which category, state and county the user selected it will email all the information displayed on that third page to all the emails in the Email field in the database.
Now, I already have the first and second pages(easy enough) and the third page I can get it to display all the info how I want it and now I need to know how to go about emailing that info to the emails that match the specific fields? Right now all I have it doing on the third page, instead of submitting it for emailing, it just displays the info from the forms AND emails that match from the database. Code:
I am learning more and more about asp but can't find and figure out where and what varialbles to add to this form. I want to be able to have this form email to me and to the person that filled it out as there receipt as well.
I don't have it set up to show the results after they fill it out that would be nice but not sure how to do that either. My main focus is getting the receipt sent to the person that filled it out. Code:
I am using CDONTS object to send emails to a person when he is registered with the web portal,but the problem is the mail is getting filtered as a spam or junk mail, and does not land in the Inbox,how to send this auto generated email into the inbox and not as a spam or bulk mail.
Here's what i'm trying to do, send out an email that contains both text and html with the mime encoding that will let the user's client display what they support. This email will be an external file.
I have a web form and I want to generate 2 different emails (not CC's) from it. One with all the information to go to the client, and one to go to the customer with half the information.
I've been working with ASP for 6+ years now, but in that time I've never had any solid advice on how to build a secure system. So I thought I'd ask here first.
Anyway, here's the situation: I have a client who wants to take credit card information via ASP form (https) and then send the resulting content (which may be either HTML- or text-formatted) to their email account, which they access using Outlook (2000, I believe). I want to build the system to make it as secure as is reasonably possible; at the same time, they want to make it easy to read / retrieve their signed/encrypted messages.
I know their are a lot of components out on the market that permit programmatic encryption of data, but I don't know enough about what I need to make an informed buying decision. I've heard that encrypting the email content and then signing the entire message is the proper thing to do, but how do I actually do that via code? And I definitely don't understand how the message is handled once it reaches Outlook (via POP, IMAP or Exchange -- they haven't decided on which yet).
My brain is full of things such as AES, MD5 + SHA-1, SSL, S/MIME and such -- how do I put all these things together into an effective solution?
For some reason, the email scripts on my web site can't send emails to Hotmail accounts. No error is generated, but no email is sent either. I've done some searching on this matter, and it appears as though I'm not the only one having this problem, but I have yet to find a solution :(
Below is my CDOSYS script that was *supposed to* resolve the problem by passing the SMTP server's along with the email, but it doesn't work :(
Have any of you had success with sending emails to Hotmail accounts via CDO? I don't have control over the server's setup because it's a hosted account...
I need to send an .ASP page as an email template using VBScript. I'd like to do so using CDONTS or CDOSYS. the script needs to loop through a recordset and send emails using data from SQL 2000.
when i try to send using a script i built the asp page pulls in without rendering the asp. how can i pull the rendered asp into my vb for emailing?
I want to use a simple CDONT mail script to allow the administrator of a site to send an email blast to their users. there are approx 1600 emails in the MS SQL db table. I would like to parse the entire email address column and get a variable that is all the email addresses separated by a comma so that the form picks it up as all the emails in the 'bcc' field as in the eg. below..I know there has to be an easier way but I want to get these guys up and running.
I need no send birthday emails every day. I need something to check everyday on my database for birthdays, but I don't have any components to do that and I dont have rights to install it on my webserver.
Is there a way to do it without installing anything? Only through asp?
I want to send automatic emails from my website after a definite interval of time. I need a way to execute my ASP script repeatedly without any external triggering....
I have just tested code I pulled from the chilli!Mail tutorial to email data via an ASP page.
It worked perfectly the first time the page was loaded, however now I am getting the following error:
Error Type: CDONTS.NewMail.1, ASP 0220 (0x80020009) This ASP file must be transacted in order to use the ObjectContext object. /ContinuousImprovements/test.asp, line 29
I haven't seen this error before and am not too sure what it means, any help would be appreciated.
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:
I have a page that sends user comments with CDONTS, works fine.Until I put a URL (http://192.168.0.1).If I use http://domain.com it works fine.Why with the numeric URL, CDONTS does not send the mail?
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.
I had to write a page in ASP which sends an email. I googled and was able to write the following code:
<html> <body> <% Set Mail = Server.CreateObject("CDONTS.NewMail") Mail.To = "XXXXXXXXXXXX@XXXXXX.COM" Mail.From = "YYYYYYYYY@YYYYY.COM" Mail.Subject = "Test MAIL Subject" Mail.Body = " Body Body Body Body Body Bodyody Body Body" If Mail.Send Then Response.Write("Mail has been sent successfully") Else Response.Write("Mail Sending Failed") End If Set Mail = nothing %> </body> </html>
When I run this script on a shared hosting server, It's saying "Mail Sending Failed". I had never written ASP code before and couldn't find what the reason is.. I also checked whether CDONTS.NewMail component is available.
I've tried to send a mail using CDONTS.DLL but the mail goes in to C:InetpubmailrootQueue"
Here is my code
Dim Mailer Set Mailer = Server.CreateObject("CDONTS.NewMail") Mailer.To = "testemail@hotmail.com" Mailer.From = "expediteur@email.com" Mailer.Subject = "Titre du message" Mailer.Body = "Le texte qui sera envoyé" Mailer.Importance = 0 Mailer.BodyFormat = 0 Mailer.MailFormat = 0 if not Mailer.Send then response.write ("mail envoye") else response.write ("Mail non envoyé. Erreur : ") & Err.Description end if Set Mailer = Nothing
I work with win xp pro, do can I use CDONTS or CDO? I work on local (the webserver is located:C:Inetpubwwwroot)
I just found out that CDONTS was indeed installed on our web server so I've been playing around with some easy sample codes. However, when I run the code, nothing happens. I get no errors, it seems like everything went OK, but no email! Are there firewall issues with CDONTS? If so, how can I work around them?
Set mail = Server.CreateObject("CDONTS.Newmail") mail.From = janki@yahoo.co.in mail.To = sender@yahoo.com mail.Subject = "Subject" mail.Body = "newsletter" mail.AttachFile = "C: est.zip" mail.BodyFormat = 0 'CdoBodyFormatHTML mail.Send Set mail = Nothing this code is not working please help.....
I am running the following script for sending e-mail thro web
Set objCDOMail = Server.CreateObject("CDONTS.NewMail") objCDOMail.From = "vkumar@ugs.com" objCDOMail.To = "vkumar@ugs.com" objCDOMail.Subject = "Library books" objCDOMail.BodyFormat = 0 objCDOMail.MailFormat = 0 objCDOMail.Body = "hi" objCDOMail.Send Set objCDOMail = Nothing ------------------------- I get the following error, when I call send method of CDONTS.NewMail object --------------------- Microsoft VBScript runtime error '800a0046' Permission denied
/cae/library/issueupdate.asp, line 61
----------------------------
I tried both the following. Everything looks fine. My OS is windows200 server
I'm not new about send email with CDONTS. But one thing I don't know.. How to send name of email sender with email. As All command I used to use is as follow.
Dim myMail Set myMail = CreateObject("CDONTS.NewMail") myMail.From="tom@hotmail.com" myMail.To="paul@hotmail.com" myMail.Subject="Hello :-)" myMail.BodyFormat=0 myMail.MailFormat=0 myMail.Body=HTML myMail.Send
when the reciever recieve email. Such as in hotmail box. It will show tom@hotmail.com as sender. But I want it to show name such as ...Tom Hariton not tom@hotmail.com But I don't know that command to add in the script.
i am devloping a carrer page. i want 2 give the facility 2 user to upload the resume and send to the mail id. for example in yahoo mail. one can attach resume and send to the desired id. i want to do it in cdonts. so can anybody help me?????
i have create a web pages which is a register form for customer, and then when the customer fill up the form and click submit, it will send a mail to the customer for comfirmation. below is the coding i use: Code:
if objIndexMail.Send then Response.Write("Mail Sent") else Response.Write("Failure. ") end if
and it's coming up as Failure every time. Is there a way I can see the status of the .Send command, and why it came up as a failure? no errors are being generated, it's just not sending..
Is there a way to determin if the email message was sent? I have a numnber of applications that use CDONTS to send mail from both ASP and ASPX pages. If the server is down mail does not get sent. I do not see a way to determine this by code. Does anyone know of a way?