Does anyone know why emails sent from my website are going into the junk mail in outlook.
cdo code as follows
i have plenty of text in the body and a url link
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
%>