Hello DPans ! I'd like to have a code that would insert banner in email. The banner will be hosted on my server & users just copy & insert the code in their signatures. What's the generic code for this? -The Big K-
Just make sure you have HTML-enabled email. The code should be something like this: <a href="yourdomain.com"><img border="x" src="yourdomain.com/yourbanner.jpg" width="xx" height="xx" hspace="xx" vspace="xx"></a> Code (markup): As usual, you can strip out the border, width, height, hspace and vspace attributes if you don't want them. Hope that helps.
What my44 posted will work good for you. You can also use this: <a href="yourdomain.com" target="_blank"><img src="yourdomain.com/images/xx.png" width="xx" height="xx" border="0" /></a> Code (markup): or <table width="100%" border="0" cellspacing="5" cellpadding="5"> <tr> <td align="center"><a href="yourdomain.com" target="_blank"><img src="yourdomain.com/images/xx.png" width="xx" height="xx" border="0" /></a></td> </tr> </table> Code (markup):