Mails der sendes som spam
Hvorfor modtager jeg de mails der sendes via mit mailscript som spammail ?jeg har lavet en funktion i mit adminmodul hvor man kan skrive et nyhedsbrev til dem som har skrevet sig på. men når jeg modtager mailen ser det sådan ud:
Spam detection software, running on the system "sika.andersenit.dk", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or block similar future email. If you have any questions, see the administrator of that system for details.
Content preview: hell yeah im testing this shitty newslettergenerator!!
bold italics [...]
Content analysis details: (6.0 points, 4.9 required)
pts rule name description
---- ---------------------- --------------------------------------------------
0.8 TO_ADDRESS_EQ_REAL To: repeats address as real name
0.1 HTML_60_70 BODY: Message is 60% to 70% HTML
-0.0 BAYES_44 BODY: Bayesian spam probability is 44 to 50%
[score: 0.4947]
1.2 HTML_IMAGE_ONLY_02 BODY: HTML: images with 0-200 bytes of words
0.3 MIME_HTML_ONLY BODY: Message only has text/html MIME parts
0.1 HTML_MESSAGE BODY: HTML included in message
0.6 MIME_HTML_NO_CHARSET RAW: Message text in HTML without charset
1.6 MISSING_MIMEOLE Message has X-MSMail-Priority, but no X-MimeOLE
0.1 MISSING_OUTLOOK_NAME Message looks like Outlook, but isn't
1.2 HTML_MIME_NO_HTML_TAG HTML-only message, but there is no HTML tag
The original message was not completely plain text, and may be unsafe to open with some email clients; in particular, it may contain a virus, or confirm that your address can receive spam. If you wish to view it, it may be safer to save it to a file and open it with an editor.
mit script ser sådan ud:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../../Connections/zoobar.asp" -->
<%
Dim rsNyhedsbrev
Dim rsNyhedsbrev_numRows
Set rsNyhedsbrev = Server.CreateObject("ADODB.Recordset")
rsNyhedsbrev.ActiveConnection = MM_zoobar_STRING
rsNyhedsbrev.Source = "SELECT * FROM nyhedsbrev ORDER BY IDnyhedsbrev DESC"
rsNyhedsbrev.CursorType = 0
rsNyhedsbrev.CursorLocation = 2
rsNyhedsbrev.LockType = 1
rsNyhedsbrev.Open()
rsNyhedsbrev_numRows = 0
%>
<%
Dim rsEmails
Dim rsEmails_numRows
Set rsEmails = Server.CreateObject("ADODB.Recordset")
rsEmails.ActiveConnection = MM_zoobar_STRING
rsEmails.Source = "SELECT Email FROM modtager ORDER BY IDmodtager DESC"
rsEmails.CursorType = 0
rsEmails.CursorLocation = 2
rsEmails.LockType = 1
rsEmails.Open()
rsEmails_numRows = 0
%>
<%
Overskrift = (rsNyhedsbrev.Fields.Item("Overskrift").Value)
Tekst = (rsNyhedsbrev.Fields.Item("Tekst").Value)
Dato = (rsNyhedsbrev.Fields.Item("Dato").Value)
Set JMail = Server.CreateObject("JMail.SMTPMail")
JMail.ContentType = "text/html"
JMail.ServerAddress = "websmtp.zoobar.dk"
JMail.Sender = "Zoobar"
JMail.Subject = Overskrift
JMail.Body = "<font size='2' face='Verdana'>" &_
Tekst &_
"</font>"
JMail.Priority = 3
JMail.AddHeader "Originating-IP", Request.ServerVariables("REMOTE_ADDR")
do while not rsEmails.EOF or rsEmails.BOF
JMail.AddRecipient rsEmails.Fields.Item("Email").Value
JMail.Execute
JMail.ClearRecipients
rsEmails.movenext
loop
Response.Redirect "oversigt_nyhedsbrev.asp"
%>
<%
rsNyhedsbrev.Close()
Set rsNyhedsbrev = Nothing
%>
<%
rsEmails.Close()
Set rsEmails = Nothing
%>
jeg har fået følgende svar fra Azeros support, men aner ikke hvad jeg skal gøre:
"
Grundene er angivet i den modtagne e-mail.
pts rule name description
---- ---------------------- --------------------------------------------------
0.8 TO_ADDRESS_EQ_REAL To: repeats address as real name
0.1 HTML_60_70 BODY: Message is 60% to 70% HTML
-0.0 BAYES_44 BODY: Bayesian spam probability is 44 to 50%
[score: 0.4947]
1.2 HTML_IMAGE_ONLY_02 BODY: HTML: images with 0-200 bytes of words
0.3 MIME_HTML_ONLY BODY: Message only has text/html MIME parts
0.1 HTML_MESSAGE BODY: HTML included in message
0.6 MIME_HTML_NO_CHARSET RAW: Message text in HTML without charset
1.6 MISSING_MIMEOLE Message has X-MSMail-Priority, but no X-MimeOLE
0.1 MISSING_OUTLOOK_NAME Message looks like Outlook, but isn't
1.2 HTML_MIME_NO_HTML_TAG HTML-only message, but there is no HTML tag
Kig eventuelt nærmere på disse, lige hurtigt kan jeg se at du ikke har defineret et html tag, x-mimeole og mime.
Med venlig hilsen
Claus Bagge
Support
"
please help
