Kyle,
I went into my profile on CB and set my default editor to No editor. I went into my CBSubs Mailer and the following is the code I saved:
<img src="[cb:config param='live_site' /]/images/stories/Graphics/Logos/NPHIC-Logo-Invoice.jpg" />
<table style="width: 708px;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="354"><img src="[cb:config param='live_site' /]/images/stories/Graphics/Logos/NPHIC-Logo-Invoice.jpg" /></td>
<td style="width: 354px;" align="right" valign="top">
<p align="right">986 Hidden Hollow Drive<br /> Marietta, GA 30068<br /> 770.509.5555</p>
</td>
</tr>
</tbody>
</table>
I changed the double quotes around live_site to single quotes. It was getting truncated since it was trying to match the double quotes. Additionally, I added the code you provided outside the table, just to make sure that the table codes were not affecting the replacement. The result is the same as before. The cb:config replacement is not happening. Here's the code from the received email:
<p class=MsoNormal><img id="_x0000_i1025"
src="%5bcb:config%20param='live_site'%20/%5d/images/stories/Graphics/Logos/NPHIC-Logo-Invoice.jpg"></p>
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=708
style='width:531.0pt;mso-cellspacing:0in;mso-yfti-tbllook:1184;mso-padding-alt:
0in 0in 0in 0in'>
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
<td width=354 valign=top style='width:265.5pt;padding:0in 0in 0in 0in'>
<p class=MsoNormal><img id="_x0000_i1026"
src="%5bcb:config%20param='live_site'%20/%5d/images/stories/Graphics/Logos/NPHIC-Logo-Invoice.jpg"></p>
</td>
<td width=354 valign=top style='width:265.5pt;padding:0in 0in 0in 0in'>
<p align=right style='text-align:right'>986 Hidden Hollow Drive<br>
Marietta, GA 30068<br>
770.509.5555</p>
</td>
</tr>
</table>
Any other thoughts? BTW. I am able to get it to work by hardcoding
www.nphic.org
into the img src string.
Thanks,
Joe