Junk Mail
I created an Email sender to get emails out of my database, and send it! But when they get the Email it goes into Junk Mail, which most people dont read. Just wondering is there a way of sending the Email, and for it to NOT go into junk mail?
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
CDOSYS Always Filtered To Junk Folder
I am trying to set up a CDOSYS email to send mail to my customers from my website. I have no problems sending either plain text or HTML mails (ish) from the code I already have. The main issue i am having is that the mail will always be filtered into the junk mail folder on outlook 2003 and hotmail. (they are the only two I am testing). Is there a way to prevent this from happening? I know one solution would be to ask the customers to set the "from" email address as "known" but for my scenario, this is not really going to be sufficient. You may have noticed I had an "ish" next to my HTML mails. I have found that when the mail using images is recieved in outlook, it converts the mail to plain text by default, but hotmail just rejects it all together. I often get mail from other websites (newsletter etc etc) and they dont seem to be filtered, plus if there are any images in the HTML email that is sent to me, outlook gives me the option to download them if I would like to. How do I get this sort of system in place?
Mail Insertion Hack On Send Mail Form
I'm using CDO to send mail to the site owner from ASP pages with forms. Recently one of my forms is occasionally sending email with what seems to be an insertion which is replacing the plain text part of the email with something else. Looking at the server sent email source, the hacked emails have the following:
Variable-variable=junk
im trying to subtart one quantity from another then stick the answer in to an update statment, but all i get is an error in syntax message variable math bit= qty=request.form("oqty")-Request.form("qty") sql = sSQL="Update spares SET spares.location='"&request("location")&_ "',spares.machine='"&request("machine")&_ "',spares.part_desc='"&request("part_desc")&_ "',spares.part_number='"&request("part_number")&_ "',spares.qty='(" & qty & ") "&_ "',spares.min_qty='"&request("min_qty")&_ "',spares.updated_by='"&session("name")&"' WHERE(spares.id)=" & form_id
Sending Mail Using ASP/VBScript To Exchange Mail Box
Here's the scenario. I'm currently using cdosys/asp to send mail to our SMTP server. We use a product called MailFilter to check for SPAM. It doesn't work very well. If MailFilter isn't working cdosys also has problems and emails don't get sent. As these email are confirmations for customer's bookings this means lots of customers calling to see where their confirmation emails have gone. The root of the problem is MailFilter but that here to stay. So I had this thought of sending the message to a queue of some sort so at least they will get to the customer eventually rather than being lost for good. So here's the question: Can I/How do I send messages to a mailbox on our exchange server using cdo.message?
Invalid Mail Address Gives Error In CDO Mail
I'm using CDO from my vb component to fire email. The problem is whenever one of the email addresses in to, or cc is wrong then none of the mails are fired even to the correct addresses. It gives an error like The server rejected one or more recipient addresses. The server response was: 550 Relaying denied for <xfd@wre.com> My code goes like this. Why is the mail server trying to look for the validation of email ids??I want that atleast the mail should be fired to the correct email addresses rather than no email fire. Can i achieve that. Dim iMsg As New CDO.Message Dim iConf As New CDO.Configuration With iConf .Fields.Item(cdoSendUsingMethod) = cdoSendUsingPort .Fields.Item(cdoSMTPConnectionTimeout) = 10 ' quick timeout .Fields.Item(cdoSMTPAuthenticate) = cdoBasic .Fields.Item(cdoSendUserName) = "username" .Fields.Item(cdoSendPassword) = "password" .Fields.Item(cdoURLProxyServer) = "server:80" .Fields.Item(cdoURLProxyBypass) = "<local>" .Fields.Item(cdoURLGetLatestVersion) = True .Fields.Update End With Set iMsg.Configuration = iConf With iMsg .To = strToEmail .From = strFromEmail .CC = strCCEmail .BCC = strBCCEmail .Subject = strMailSubject If strMailFormat = "TEXT" Then .TextBody = strMailBody Else .HTMLBody = strMailBody End If If strAttachment <> "" Then .AddAttachment strAttachment End If If intPriority = 2 Then .Fields.Item("urn:schemas:mailheader:X-Priority") = cdoHigh .Fields.Update End If .Send End With
Sending E-mail To Different Mail Box!
I would like to know if this can be achieved! On the form I a drop down menu that's called ("Escalation_type") the values are eta, hdtv, and supervisors. I have some ideas but I am not sure if it will work or not. If the use chooses an eta as a value I would like it to be sent a mailbox for exam: no@where.com. If they choose hdtv as value I would like it to be sent to a different mailbox. Can this be achieve by using the case statement or the if statement?
Asp Mail Without Using A Mail Component
I'm looking for an asp code who can send an email without using a mail component. I started to write somethings using winsock but I don't have enough time to finish it.
Mail And CSS
Have created a contact page which uses CSS and am using asp mail object to send email on the page. However, I have encountered problems and think it might be down to the DOC type that am using ....
Mail
I have to create a send mail code after registration had taken place. i want to know how to code for that ....
CDO Mail From ASP On IIS 6
Our company has recently migrated from Windows 2000 servers to Windows 2003 servers. Since the move to IIS 6, I have been unsuccessful in finding how to configure the server to support CDONTS to send smtp mail. I have used this method in asp pages for years without any issues, until 2003 server. I have even tried opening the smtp server completely, and still no luck. I can send mail using OE through the server, so I don't believe it's an smtp configuration issue.
CDO Mail
I am trying to setup an error reporting system for our Intranet. We have a Windows 2000 Server with SQL Server and we have an Exchange Server 5.5. I need to set it up so I can use CDO mail. I have used CDO before, but have never set it up to work. I built a small little page with some CDO code on it, but I get an error when I try to run it. How can I set this up to send mail from the webserver to people in our facility?
Mail Through ASP
I am facing a problem, I am using CDONTS for mailing, and the following Code: <% set sendMail=server.CreateObject("CDONTS.NewMail") sendMail.To="divyesh.shah@softsolvers.com" sendMail.Body="Hello Testing" sendMail.From="divyesh.shah@softsolvers.com" sendMail.Subject ="Test" sendMail.BodyFormat =0 if sendMail.Send then Response.Write ("Mail Send") else Response.Write ("Mail Not Send") end if set sendMail=nothing %> I have two windows 2000 server, while running from one server i got the mail, while from the other i don't got the mail,on the second one the mail is dump in the mailrootqueue. is there is some problem with the CDONTS setting on the second server, or some other problem
Mail Api For ASP
I have a simple ASP app (not ASP.Net) that I need to send email from. Can anyone make a recommendation, and share why that's the best one? (cdo, msxml, etc)
Cdo Mail
I am trying to get cdo.message working on my home development machine, however, when I send it it appears to get stuck in the queue and never actually gets sent. If I don't have a domain SMTP set (either alias or remote) then I get an error on page. But if I set these, the email just sits on the queue. I have been trying to work it out from other posts and forums, aspFAQ etc but with no joy. Could someone supply a step by step guide to getting SMTP set up on a win2K pro machine and how to get these mails out of my servers queue and into the outside world so I can properly test code withing having to upload to my hosts server and get the email back?
Asp Mail
We use a custom built mail system at work. It is an asp based webmailing system. It uses cdonts.When we try to mailout to our clients (as a group) about 1500 of them, most of them get the full email. Others get about a third of the email.
Mail In ASP
how can i send the mail to multiple receipients like yahoo.mail or hotmail.
Receiving Mail
I am generating Purchase Order from database. Then i send it to the supplier. I am using CDONTS to send mail. I am not sure that it was sent or not. So i need confirmation when they read it or received. How can i send a mail with acknowledgement?
ASP E-mail Question
My mail server and web server are 2 different servers. Both servers run win2k. Therefore the web server does not have an SMPT server. ASP throws the Server.CreateObject failed error when using a CDONT.NewMail object. What I need to be able to do is configure IIS or ASP on the web server to look at the mail server for the SMTP server. Is this possible? If so, how is IIS/ASP configured for this?
Mail Script
I'm trying to create a mail script "not formmail" to email me a test message using asp. Could somebody tell me what's wrong with me script? it doesn't send me a message???. I'm using windows 2000 & mailenable email server. <%@ Language=VBScript %> <% Dim objCDO Set objCDO = Server.CreateObject("CDONTS.NEWMAIL") objCDO.To = "4@yahoo.com" objCDO.From = "4@yahoo.com" objCDO.cc = "" Dim txtSubject txtSubject = "Test Test Test" objCDO.Subject = "Testing Email Script" objCDO.Body = txtSubject objCDO.Send %> <html> <head> <title>Comersus Diagnostics and Tools</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF"> <img src="images/logocomersus.gif" width="194" height="57"> <br><br><b>Comersus Diagnostics and Tools</b> <br><br> <body> </body> </html>
Sending Mail
I Want to send email but i couldnot make plz help send both asp and html form cdonts,aspmailer,aspmail
Form To E-mail
I have an html page with a form on it. I need the information that a user fills into the form to be sent to an email address via an asp file....
Format E-mail
I use an ASP mail object to send orders filled online to a recipient via an e-mail. I would like to know if it's possible to format the way the order looks in an e-mail? I tried the following, but see no change in the format: H1 = "<b><font size=2 color=#ED171F face=Verdana, Arial, Helvetica, sans-serif>Order Type:</font></b>" StrBody = H1 + Request(OrderNum) + vbCrLf Then I get Order Type: just as plain as it would come if it didn't have any formatting. If I do the following: StrBody = "<b>Order Type:</b> + Request(OrderNum) + vbCrLf Then I get <b>OrderType:</b> as the heading. Does anyone know if it's possible to format the way the text look in an e-mail that is sent using the ASP Mail Object? Is there a different way of controlling the format/appearance of the text that appears in an e-mail?
How To Send Mail
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> .....
Mail.send
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?
Sending Through Mail
I have already made the form to save itself in an online database. I need to mail it to myself too, what do you recommend me to do? Some people recommended me ASPEmail, but I didnt understood how to make it works....
Can't Get CDO Mail To Work
I copied ASP/VBScript code from several sources and adapted it to my page and variables. Here is my current code for implementing CDO:
Cannot Send Mail From ASP Using CDO
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 ....
E-mail Send
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.
E-mail To Database
Is there any way to make it so I can send an e-mail and have it populate a database? For example, if I sent an e-mail with the following: John Doe 1/1/1980 Male It would populate a database, putting the information into a table with specific fields, firstName, lastName, DOB, gender. Obviously a very simple and watered down version of what I want, but is anything like this possible? Can ASP be set to check an e-mail address, put the information into the database, and then delete the e-mail?
Sending Mail
I' m using opertion system XP PRO,i have instelled the IIs 5.1. im trying to simulate sending email to my outlook express but it'snt working,somebody can tell me if i need to install any other componente? how to conigurate my smtp(what is my host name,how can i find it)? I dont want to use external component.
E-mail Attachment
I'm using ASP to generate an e-mail with attached files and send them out to clients. Typically, when we send out e-mail through our mail server, there is a disclaimer that is auto appended to the end of our e-mails. I don't know how this is set up (not a network guy and a relatively new employee). For some reason, this disclaimer is attached as a text file to any e-mails that I send programmatically. Any idea what's causing this or how to solve this problem?
How To Send Mail Through ASP
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).....
E Mail Search
I have created a searchentry.asp and a Forgotten Password.asp. In the searchentry.asp when a user trypes in a Town into the searchentry.html and click on Run Query it searches a CustomerAddress.mdb database to find any users who live in the town that the user entered into the text box. On my Forgotten Password.asp Page when a user types in their E Mail address into the box provided and clicks on Submit, the Database called "CiscoOnlineTraining.mdb" and has the table "Student Registration" searches and pulls out the E Mail addres from the database that the user has typed in......
Converted PHP Mail To ASP
Once the html form is submitted, all form parts are sent to an email... Its not working? I can show you the php I converted if you need. Please help, client change to win server and getting impatient! Code: .....
Mail Using ASP (POP And SMTP) Help!
I have a website and I need visitorst to be able to send emails to me from it by filling out a form (not mailto:). I have Win2k3 server enterprise running with IIS and POP3 all setup. My provider blocks port 80 so i redirect using no-ip.com to another port. I tryed CDOSYS and other free third party mailers (currently I have Persits Software free ASPemail installed), but I can't get anything to work. I know by now that I need to set something up (maybe some redirect) on my server so this works. Please, if anyone knows how to do it, tell me how. In particular, to send an email from my site to at least my local server, and at best to lets say hotmail.com.
CDO.Mail Error
I have these pages running in my localhost, windows xp pro sp2 and constantly getting error. I have spent hours trying to solve the problem, but I am getting no where. I have changed the email address of mine here, but everything is verbatim.....
CDONTS Mail
IS the code for sending email using cdonts different if you are running a windows 2000 server with exchange 2000 as opposed to running a different windows server (NT) with exchange 5.5? if I upgrade the server to exchange 2000 from 5.5 do i have to reinstall the cdo.dll on the server??? do i need to somehow reinitialize the cdo so it's active?
HTML Mail
I am trying to write a session value into a html email body and am unsure of the syntax: Title=Session ( "Title" ) HTML = HTML & "<FONT SIZE=""6"" FACE=""BERNHARDFASHION BT"" COLOR=""#FFC880""><B>Session ( ""Title"" )</B></FONT></td></tr>"
CDO Mail Object
I have an E-mail ASP Web form that is using a CDO Mail Object. This form has to be filled out before the customer can download our demo. Currently, the customer fills out the form, clicks to submit and a message appears to the customer telling them it was successful and to click on a picture on the form to download the demo. My problem is that many of the customer don't read the message. I want to modify the code so that after the customer clicks SUBMIT, the info is submitted and then the download immediately begins without them having to take further action. What is the code I should add to begin downloading a file after the form is successfully submitted. Here's some of the code I am currently using:
Sending Mail With PWS
i use a personal web server and i'd like to send a mail into an ASP page. Usually, i use CDONT component but it seems it does not work on Personal Web Server. Could anyone tell me what i could use instead?
Mail Server?
I need the 'user' of my site to be able to send an HTML email with attachments to a large list of email addresses. Although I don't want them to be able to see the email addresses on that list. I need this to be able to be done from within a page on my site. Does anybody know of a program or some code that I code put on my site?
E-mail Formatting?
When e-mailing invoices and estimates, is there any way to customize the presentation of the e-mail beyond changing the message? Specifically, I'd like to add some html so the receiver can click on a link to pay online. As it is, I can type the URL in the message, but it appears only as text to the reader, not a hotlink, which, unfortunately, is quite vexing to some of my clients. It would also be nice to add a company logo, etc. to the email body. On this same subject, is it possible to send the entire invoice/estimate as HTML rather than an attached PDF? I haven't seen these options anywhere.
SMTP Mail
I'm having problems getting CDO.Message to work with SMTP on my Windows 2000 Server. I keep getting the following error: CDO.Message.1 error '80040213' The transport failed to connect to the server. /services/E-CommerceQuote_new.asp, line 2357 I am assuming that it is meaning it can't find the server i have specified where the SMTP server is, which is the same PC. I have specified by IP and domain name but i get same error. i know i haven't said much about the setup im using so if needed i can provided more details. Does anyone know how to fix this problem?
Mail Templates
I'm developping a module to send an automatic feedback e-mail to customers. The old version in plain ASP just used an HTML-document and replaced certain fields with the right value. Like {name} for instance with the customer's name. But I think that in ASP.Net, this is way old-fashioned. I want to use full Web Forms, for example: MailTemplate1.aspx <html> <body> Hello <span id="customername" runat="server" /><br /> Thank you for your feedback! </body> </html> As you can see, this is a full page and so using a control is not a right solution in my eyes. After all, it is a page, so I want to use a System.Web.UI.Page. The ThankYouForFeedBack.aspx page would then have to to something like this: MailTemplate1 MT= new MailTemplate1(); MT.customername.innerText = strCustomerName; // this line will fail, see below SendMail(strCustomerEmail, I'm developping a module to send an automatic feedback e-mail to customers. The old version in plain ASP just used an HTML-document and replaced certain fields with the right value. Like {name} for instance with the customer's name. But I think that in ASP.Net, this is way old-fashioned. I want to use full Web Forms, for example: MailTemplate1.aspx <html> <body> Hello <span id="customername" runat="server" /><br /> Thank you for your feedback! </body> </html> As you can see, this is a full page and so using a control is not a right solution in my eyes. After all, it is a page, so I want to use a System.Web.UI.Page. The ThankYouForFeedBack.aspx page would then have to to something like this: MailTemplate1 MT= new MailTemplate1(); MT.customername.innerText = strCustomerName; // this line will fail, see below SendMail(strCustomerEmail, RenderContents(MT)); It's obvious that I'm looking for the dummy "RenderContents" function. I didn't manage to to it with the Page.Render method, since the page does NOT get loaded if you create a page dynamically like on the first line of code. (Output is thus an empty string) Because of this too, the second line of code WILL PRODUCE AN ERROR, since customername points to nothing because the page doensn't actually get loaded. Does anyone have an idea?
Mail Merge
I have a file which is performing a mail merge. It grabs data from the database and then merges with the bookmarks in a template document if the fields are present. I have set write permissions on the docs folder it should be saving the file to but when I redirect to the file its not being saved. Not sure whats happening here....hope someone can shed some light or help me in building another script. The main feature i need to add to the mail merge is the ability to only add information if the fields are present. Code:
|