HTML vs. Text - problem = " [image] " replaces image in text version

G

GeddyLeeRocks

Guest
Hello All
I have a coworker that needs to somehow code an html email so that when someone receives text only email they don't have a space or a "[image]" where the image is supposed to be in an html email.

here's the code she has
Code:
<html>

<head>

<title>Welcome to the Rockwell Institute?s Satellite School program! </title>

<STYLE>

Table {border-width:1px}

TD {FONT-SIZE: 10pt; COLOR: #000000; Font-family: Verdana, Arial}

.hilite {font: bold 18pt Verdana, Tahoma, Arial; color:#993366; text-align:center}

</STYLE>

</head>

<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0>

 

<p>

<a  href="http://www.rockwellinstitute.com">

<IMG SRC="Logo_Satellite.gif"  ALT="Rockwell's Satellite Schools" BORDER="0">

</a>

</p>

 

<TABLE cellSpacing=0 cellPadding=10 width='620' border=0>

<TR> 

<TD width='100%' bgColor=#006666>

<P class="hilite">

<B><FONT color="#CCFFFF" size=4>

Welcome to the Rockwell Institute's Satellite School program!

</FONT>

</B>

</P>

</TD>

</TR>

<TR>   

<TD style='BORDER-RIGHT: #006666 2px solid; BORDER-TOP: #006666 3px double; BORDER-LEFT:#006666 2px solid; BORDER-BOTTOM: #006666 3px solid' width='100%'>

<P style='FONT-SIZE: 10pt; FONT-FAMILY: Arial, sans-serif' align=left>

Below you will see the User ID and Password created exclusively for your office. Use this to access your Satellite School Resource Center for registration, recruiting help, course descriptions, and more.

</P>

 

<P align=center>

<TABLE style='BORDER-RIGHT: #993366 1px solid; BORDER-TOP: #993366 1px solid; BORDER-LEFT:#993366 1px solid; BORDER-BOTTOM: #993366 1px solid' cellSpacing=3 cellPadding=3 bgColor=#edbe31>

<TR >

<TD >

<TABLE style='FONT-SIZE: 10pt; FONT-FAMILY: Arial, sans-serif'>

<TR>

    <TD align="center" >

            <U><B>

            <a  href="http://www.rockwellinstitute.com">

            Log on to www.rockwellinstitute.com

            </A>

            </B></U>

            </TD>

</TR>

<TR>

    <TD align=center>

            <TABLE style='FONT-SIZE: 10pt; FONT-FAMILY: Arial, sans-serif'>

            <TR><TD>

            <B><FONT color=#006666>LOGIN: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;78899<BR>PASSWORD: kneese77</FONT></B>

            </TD></TR>

            </TABLE>

            </TD>

</TR>

</TABLE>

</TD>

</TR>

</TABLE>

</P>

<P>Also inside the Satellite School Resource Center are a number of online tutorials that will walk you through the key features of our program and provide valuable recruiting insight.</P>

<P>A package will arrive at your office in a few days containing recruiting brochures, an administrative packet, and your first textbook.  Once that arrives, I will call you to conduct a 15 minute phone orientation on how everything works.</P>

<P>Good luck with all of your recruiting, feel free to call me with any questions you have.</P>

<p><IMG SRC="signature.gif" WIDTH="123" HEIGHT="50" ALT="" BORDER="0" ALT="Signature"><BR>

Becky Stol<BR>

Broker Services<BR>

(800) 221-9347 ext. 126<BR>

<a  href="http://www.rockwellinstitute.com">www.rockwellinstitute.com<BR></a>

</P>

</TD>

</TR>

</TABLE>

 

 

</body>

</html>
 
Back
Top