email-spam

spam honeypot api

I would like to know if there is a mail spam honeypot api arround allowing the users to fetch the actual emails content. ...

Good non-intrusive anti-spam email obfuscator?

I'm trying to come up with a JavaScript email obfuscator to reduce the chance for spam in emails listed on a web site. Right now I've got a JavaScript based obfuscator that uses a combination of HTML encoding & JavaScript to convert an obfuscated email into a normal email transparently. What I do is this: Format the "mailto:" part of ...

Prevent sent emails treated as junk mails using php mail funtion

I wrote a PHP script to send emails. My script is like this: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'From: [email protected]' . "\r\n"; // Email Variables $toUser = "[email protected]"; // recipient $subject = "testing"; // subject $body = "<html><body>...

Least Troublesome Email Format

Hi Does anyone have a reason / preference as to the best format to send email responses from a website (payment confirmation / password reminder’s etc)? Thanks Jon ...

Avoid being labeled as spam when sending many emails per day on social site with PHP

Possible Duplicate: Avoid being blocked by web mail companies for mass/bulk emailing ? Hi all, if I send many emails per day (100s or 1000s) to users, style "someone commented on your picture" etc..., what are the best practices to avoid that these emails are labeled spam and blocked? I already have an opt-in (ie. users check a...

Tracking email bounces, opens, clicks

I found How do you make sure email you send programmatically is not automatically marked as spam? to (hopefully) be a solid guide to avoiding being marked as spam. Are there any other important tips/suggestions? How do I track bounces,opens,clicks? These are features found in paid services like Mail Chimp and Campaign Monitor. ...

Block spam from "tell a friend" forms

You have to have a form on your website for people to send an email to a friend if they found something interesting. You can force people to be logged in (which is not a good option in my case). You can make time delay (this is not really urgent email, so it can wait for 5 minutes). Do you have this problem? How would you solve it? Edit...

Virus / Spam Scanner Programatically for .NET ????

I am writing a piece of messaging software that will send and receive text, voice, fax etc. via SMTP (email). I need to Programatically have the ability to scan incoming and outgoing emails for viruses, spam etc. QUESTION: Can anyone offer a suggestion on a product to use for this? I tend to stay away from the consumer level software (...

How to receive "report spam" complaints for a newsletter service?

I'm building an email newsletter service. Obviously we are doing regular opt-out links and everything like that, but I'm wondering...when a user in Gmail does the "report spam" button (or equivalent in any email client) how can we receive these reports? Have people developed good systems to programatically parse these reports, like an ...

Do you hide email addresses to "spam bots" on websites?

Although there are still bots harvesting emails, I'm wondering if you hide email addresses on websites. I know this was common practice a few years back, but it seems that it's starting to fade. Reasons not to: most email servers include quality spam protection, including services such as Gmail and hardly any gets through it's annoyin...

How safe is javascript e-mail obfuscation really?

In order to put e-mail addresses on my sites, I use this Javascript: function showEmailLink(user, domain, linkText) { if (linkText == "") { linkText = user + "@" + domain; } return document.write("<a href=" + "mail" + "to:" + user + "@" + domain + ">" + linkText + "<\/a>"); } so that in my HTML I can write this: please send m...

Sending messages to spam folder

I want to know what do I have to do in my mail application to move rest of the messages of marking any email address as spam into spam folder without restarting mail server. Actually I can move the messages into spam folder, but I have do some configuration in my mail server, then have to restart it before making it move to spam folder i...

Implementing RFC 2369's "List-Unsubscribe" in PHP website - should I send confirmation?

I'm trying to implement RFC 2369's "List-Unsubscribe" in a PHP website which sends out daily updates by email. I'm planning to use the HTTP option only since this can be implemented simply in PHP code. My question is this: Once the user is unsubscribed, is it ok to send out a confirmation email, like "unsubscribe successful"? Or will t...

How to add mysites mail to whitelist?

hello friends, Currently I am developing a website.In this I have the option to send invittion.When I send the Invitation it going to spam folder.How can I send my site's mails to Inbox.Whether I nedd the trafic to add into whitelist?Or is there anyother way to make to directly send the email to Inbox.My site is developed in PHP......T...

How to display an email address for users but hide from robot? Is there a simply way to do it using PHP, Javascript or Jquery?

Is there an elegant and easy/simple way to do it using PHP, Javascript or Jquery? ...

How to setup disposable email aliases (craigslist style)?

Writing my own "craigslist" in .NET, trying to figure out how to create disposable email aliases (craigslist type)? Here's what I mean by "craigslist style". My website is: somecoolurl.com User creates an account, but doesn't want to give his/her email out as contact when posting on the site. I want to give the us...

local.cf spamassassin

actually i am trying to write one rule in local.cf spamassassin what i need is to block all Viagra emails. as you know in these emails some time thay write Viagra,VIAGRA,VIAGRA(c) and some time it is in Subject, some time Name, some time Body of message can you please tell me what will be rule exactly to stop all these emails. Thank...

Email Spam Filtering at the Code Level in Java

I'm writing code to download email from various servers, some of which are outside of my control. I'd like to be able to filter out spam at the code level since I can't always rely on the servers to do it effectively. What resources in Java are available to help with this? What is a good approach to take in order to minimize the amount o...

spam check, spam score how to?

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...

sending email with PHP (preventing from being placed in spam folder)

hello, i am trying to send email using PHP scripts... however, the recipient is receiving it in his/her SPAM folder -this is not the desired result (I would like to have it sent directly to their inbox so that I don't have to warn them to look in their SPAM folder). below is the code I use to send the email using PEAR... what changes ca...