Here's how I resolved my issue of masking email addresses, in case anyone else is interested.
Find:
Quote:
$message['text'] = preg_replace('/([-_.\\w]+)@([\\w]+[-\\w]+)\\./', '\\1 (AT) \\2 (DOT) ', $message['text']);
|
Replace with:
Quote:
$message['text'] = preg_replace('/([-_.\\w]+)@([a-zA-Z0-9\.]+)/', '\\1@xxxxxx', $message['text']);
|
Find:
Quote:
$from_name = from_name($message['from']);
|
Replace with:
Quote:
$sender_name = from_name($message['from']);
$from_name = preg_replace('/([-_.\\w]+)@([a-zA-Z0-9\.]+)/', '\\1', $sender_name);
|
I'm sure it's not the most efficient want to do it, but it seems to work for me.
http://vfrworld.com/forums/vf-vfr-mailing-list/