Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a PHP API/class/method to calculate the spam score of an email's subject for use on a marketing website (as in, the spam score is calculated while building an email, not on receiving an email). I've seen similar products like SpamAssassin but wondered if there's anything more basic seeing as only the subject score is needed.

Thanks.

share|improve this question
Dunno, spam score calculation is very complicated (check against dictionnaries with mutated versions ...). You should check out dokuwiki's wordblock feature's source code it may be useful : dokuwiki.org/blacklist – yent Apr 19 '11 at 13:18
See stackoverflow.com/questions/1417590/… – Brad Apr 19 '11 at 15:49

2 Answers

up vote 2 down vote accepted

Interface with SpamAssassin. There is some code here: http://ppadron.blog.br/2010/05/04/php-api-to-spamassassin-spamd-protocol/

share|improve this answer

spam score of an email is not only calculated by the subject, but is the sum of hundreds of classifiers. checking your spam emails subjectg wont get the mail through.

if you really want to check your mail before sending programatically, generate a dummy mail with your subject and run it through a local spamassassin installation via command line.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.