mail filter issue

hi gang.

i recently activated my email filter, offered by 2.4. great stuff. in order for things not to go too drastic, i just activated, and left it on “normal” - and set all the emails to the default setting.

but… some of my own emails that are being sent as notification from the website - are being filtered! 8o

can anyone take a look at the following point table, and then me email code below, and suggest what i can do to stop this from happening?

cool, thanks!

Content analysis details: (7.6 points, 7.0 required)

pts rule name description


1.3 RCVD_NUMERIC_HELO Received: contains a numeric HELO
0.7 MIME_HTML_ONLY BODY: Message only has text/html MIME parts
0.2 HTML_MESSAGE BODY: HTML included in message
0.9 HTML_40_50 BODY: Message is 40% to 50% HTML
1.1 MIME_HTML_NO_CHARSET RAW: Message text in HTML without charset
2.7 FORGED_RCVD_NET_HELO Host HELO’d using the wrong IP network
0.6 MISSING_MIMEOLE Message has X-MSMail-Priority, but no X-MimeOLE
0.1 CLICK_BELOW Asks you to click below
0.1 MISSING_OUTLOOK_NAME Message looks like Outlook, but isn’t

///// email code ////// with ASPmail:

Dim Mailer			'Holds the ASPmail e-mail object

'Create the e-mail server object
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")

Mailer.FromName =  "XXXXX Website "
Mailer.FromAddress =  "website@XXXX"

Mailer.IgnoreRecipientErrors = true
	
'Out going SMTP mail server address
Mailer.RemoteHost = strMailserver
					
'Who the e-mail is sent to

if strSendToEmail <> "" then 
	Mailer.AddRecipient  strSendTo,  strSendToEmail
	Mailer.AddBCC  "Avidan" ,  "avidan@XXXXX"
else
	Mailer.AddBCC  "Avidan" ,  "avidan@XXXXX"
end if 
if strSendToSpecificEmail <> "" then 
	Mailer.AddRecipient  strSendToSpecific,  strSendToSpecificEmail
end if 
Mailer.AddBCC  "Moshe" ,  "Moshe@XXXXXX"

if trim(strReplyTo) <> "" then 
		Mailer.ReplyTo = strReplyTo
end if 

Mailer.ContentType = "text/html"
Mailer.CustomCharSet = "windows-1255"

Mailer.UseMSMailHeaders = true 

'The subject of the e-mail
Mailer.Subject = strSubject

'The main body of the e-amil
Mailer.BodyText = "<html><head><title>Message From ..... </title></head><body>" & strEmailBody &"</body></html>"	' & strAppendToEmail 



Mailer.Encoding = 2
Mailer.Priority = 3
'ASPmail - 1: high, 3:normal, 5:low

'Send the e-mail
Mailer.SendMail	
						
'Close the server mail object
Set Mailer = Nothing

////// end of code ///////

the strMailserver is being drawn from a const file, and the strSubject and strEmailBody are coming for the includer file.

ideas apprecaied, thanks!