My emails are marked as spam by a lot of recipients of my email list. Anyone have any ideas why?

I think it's this line in the header:
X-Spam-Status: No, score=5.6 required=4.0
but I don't know why it would do that?
this is the code I use. Maybe I missed something?

$mymail="REMOVED MESSAGE";
$headers  = "MIME-Version: 1.0\r\n";
			$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
			$headers .= "From: REMOVED Email Notifier<REMOVED@REMOVED.com>\r\n";
			$headers .= "Reply-To: REMOVED<REMOVED@REMOVED.com>\n\n";

		$sql="select e.emailer, m.email, m.name from emailer_settings e, mymembers m 
			where e.member_id=m.id and e.emailer='". $freq. "'"; 
		$sqlresult = mysql_query($sql) or die(mysql_error());

		while ($row = mysql_fetch_array($sqlresult))
		{
			$mymail.="<BR>Your registered username is: <B>". $row['name']. "</b>, and email is: <B>". $row['email']. "</B>.";
			mail($row['email'],"REMOVED.com Updates for ". date("g"). ":00". date("a"). " CST",$mymail,$headers);
		}


    I'm shown as Listed on:
    BLARSBL

    KROPKA-DIALUPS

    KROPKA-FORMS

    KROPKA-IP

    KROPKA-LAMEAV

    KROPKA-PROXIES

    KROPKA-RELAYS

    I looked those up, and they seem pretty specific, so I guess I'm not on there. Maybe it's my headers???

      It's not your headers.

      <?php
        $to = "trash@spechal.com";
        $subj = "Test Message";
        $msg = "This is a test.";
        $headers  = "MIME-Version: 1.0\r\n";
        $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
        $headers .= "From: REMOVED Email Notifier<REMOVED@REMOVED.com>\r\n";
        $headers .= "Reply-To: REMOVED<REMOVED@REMOVED.com>\n\n";
        if(mail($to, $subj, $msg, $headers)){
          echo 'e-mail sent to '.$to;
        } else {
          echo 'e-mail not sent';
        }
      ?>
      X-Spam-Status: No, score=-0.6 required=5.0 

        must be my content??
        I'll try re-wording it, and see what it gets. I guess I need to stop emailing mortgage apps, viagra and porn. (Just kidding) 😛
        Thanks for the help.

          Write a Reply...