You are here

function invisimail_filter_tips in Invisimail 6

Same name and namespace in other branches
  1. 5 invisimail.module \invisimail_filter_tips()

Implementation of hook_filter_tips().

File

./invisimail.module, line 58
This module provides a filter that will search content for email addresses and replace them with their ascii equivalents before display. This is not a complete protection from spam harvesters, but it is some help.

Code

function invisimail_filter_tips($delta, $format, $long = FALSE) {
  switch ($delta) {
    case 0:
      return t('Email addresses will be obfuscated in the page source to reduce the chances of being harvested by spammers.');
      break;
  }
}