CDO going to junk

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • colinod
    Contributor
    • Nov 2007
    • 347

    CDO going to junk

    Does anyone know why emails sent from my website are going into the junk mail in outlook.

    cdo code as follows

    Code:
    <%
    'Sends an email
    Dim mail
    Set mail = Server.CreateObject("CDO.Message")
    mail.To = Request.Form("To")
    mail.From = Request.Form("From")
    mail.Cc = Request.Form("Bcc1")
    mail.Bcc = "info@yaketyyak.co.uk"
    mail.Subject = Request.Form("Subject")
    mail.TextBody = Request.Form("Body")
    mail.Send()
    Response.Write("")
    'Destroy the mail object!
    Set mail = nothing
    %>
    i have plenty of text in the body and a url link
Working...