function invisimail_encode_tips in Invisimail 7
Returns the "tips" help text for all invisimail encoders.
1 string reference to 'invisimail_encode_tips'
- invisimail_filter_info in ./
invisimail.module - Implements hook_filter_info().
File
- ./
invisimail.module, line 176 - 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_encode_tips($filter, $format, $long = FALSE) {
return t('Email addresses will be obfuscated in the page source to reduce the chances of being harvested by spammers.');
}