views:

306

answers:

1

Hi. I am doing a app that is sending email and need to have a spam checker on the outgoing email. I have been looking for this a while now, I can not seem to find a good solution. I would like to use something like the spamassassin. Do you guys got any examples how to do the spamassassin with asp.net (coding example, not example to setup the actual spamassassin, that is done)? Or examples on other ways to do this to get a score?

Any ideas on how to do this just let me know.

I would be very thankful for this

Thanks

+1  A: 

You could start with building your own Bayesian filter. This sample at Codeproject is very simple, but you could build on it.

http://www.codeproject.com/KB/cs/BayesClassifier.aspx

David