c# - How can I lower the spam score of my email message? -


I am sending a new logon and password to a user, although when I do on the test version of our site on the Internet Spam score is 4.6 by spam killer. This means that it gets trapped.

Email HTML (so there are good fonts and colors in the marketing department) with the linked image.

Mailmage () object

What measures can I take to reduce spam scores?

I am sending it using:

/ * Send an email / mailme msg = new mail form (); Msg.IsBodyHtml = True; //msg.BodyEncoding = encoding.UTF8; Msg.To.Add (new mail address (sToEmail)); Msg.From = new mail address (sFromEmail); Msg.subject = sEmailSubject; Msg.bd = sEmailTemplate; Try {Client.Send}; }

The spam score is:

  X-Spam-Score: 4.6 (++++) X-spam-report: Spam detection software report (4.6 points): PT rule name Description ---- ---------------------- -------------- ------------------------------------ 1.8 HTML_IMAGE_ONLY_20 body: HTML: with words of 1600-2000 bytes Figure 0.0 HTML_MESSAGE Body: HTML 1.7 MIME_HTML_ONLY Includes message: Only text / html MIME part 1.1 in the message HTML_MIME_NO_HTML_TAG HTML-only message, but there is no HTML tag 0.1 RDSN_NON No RDNA Using the host network with no trust   

Then if you start the HTML message with an appropriate tag (just take a full HTML page) you can drop 2.8 coins.

You can also include s, so that you can send an image without showing the attachments, very good.


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -