[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

Preventing Hotmail from blocking CDONTS/CDOSYS mail ?

Asked by arablic in Active Server Pages (ASP), SendMail Email Server, Email Servers

Hi

I run a web site that uses various forms to send email to customers. For example, I have a "Forgot your password?" script and a "Email this page" script.

I've found out that when a user sends an email via my site to a Hotmail address, the email just "disappears." I'm assuming Hotmail is considering the email SPAM because it was send by my web server? The site uses ASP and I've tried using CDONTS and CDOSYS (which I specified a SMTP server for) and nothing seems to work for Hotmail.

A large portion of my customers user Hotmail, so banning it really isn't an option.

Is there anything I can do to prevent Hotmail from blocking my site's emails???



The script seems to work when sending to other non-Hotmail accounts. If it was being seen as junk-mail, I would at least expect to see the email in my "Junk Email" folder, but it doesn't show-up at all.

I did a search through these forums on this topic, and it appears as though it's not specific to ASP (which makes sense.) Some of the  guys were wondering if the email has to contain some specific header information so it's not rejected by the Hotmail servers????

Please Help Me

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
'------------- this is my code (Asp) with my vital info changed to protect the innocent ---------------
 
 
SET cdo = server.CreateObject("CDO.Message")             
SET iConf = CreateObject("CDO.Configuration")
SET Flds = iConf.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 
.Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False
.Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Update
End With
SET cdo.Configuration = iConf
cdo.BodyPart.Charset = "unicode-1-1-utf-8"
cdo.From  = "info@MySite.com"
cdo.To =  "YourEmail@hotmail.com"
cdo.Subject = "the Subject Here"
cdo.HTMLBody = "The Content Here"
 
 
strErr = ""
   bSuccess = False
   On Error Resume Next
cdo.Send()   
 
   If Err <> 0 Then
      strErr = Err.Description
   else
      bSuccess = True
   End If
 
set cdo = nothing
 
 
'-------------- end asp script----------------
[+][-]06/08/08 09:13 AM, ID: 21738777Accepted Solution

Your question has an Asker Certified™ answer! arablic verified that this solution worked for them--which means it will likely work for you, too. Click to view the solution free for 30-days now.

About this solution

Zones: Active Server Pages (ASP), SendMail Email Server, Email Servers
Sign Up Now!
Solution Provided By: rid
Participating Experts: 2
Solution Grade: A
 
[+][-]06/07/08 11:16 PM, ID: 21737686Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/08/08 09:30 AM, ID: 21738812Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/10/08 09:51 AM, ID: 21752881Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]11/06/09 02:43 PM, ID: 25763736Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20100204-EE-VQP-115 / EE_QW_2_20070628