lol, if you need help, let me know. i posted a free script in the script section on how to make php images.
http://www.freewebspace.net/forums/showthread.php?t=2199644
**EDIT**
that is just a simplified version. if you want one a little better, then just PM me. you can have it grab the email address from a database, or, you can do it how i did the one you keep playing with...
add this to the top of the script.
PHP:
if (!empty($_GET['email'])) {
$email = $_GET['email'].'@domain.com';
}
$text = $email;
save the file as
email.php
and call the file like this...
HTML:
<img src="email.php?email=MyEmailRules" />
the image will show up on the page saying...
MyEmailRules@domain.com
you will notice a font name being called in the php script "verdana_0.ttf"
you need to put a font file on your server in the same directory as the php script, and make sure the name matches. i like to use verdana.
you can change the font and background color of the image by changing these...
PHP:
$white = imagecolorallocate($img, 255,255,255);
$txtColor = imagecolorallocate($img, 0,0,255);
hope that helps explain some stuff
if you get more technical, you can even set the domain different each time by changing more things and calling like...
HTML:
<img src="email.php?e=MyEmailRules&d=domain&x=com" />
have fun