HTML is skewing in Outlook 2010 - html

This works fine in normal clients but as we know Outlook is a pain to work with. It looks ok to me but can someone tell me why this would not render in Outlook?
<table id="contentArea">
<tr>
<td>
<p>Welcome to the TeraTitan family ${user['FirstName']},</p>
<p>Please tell us which services you are interested in currently:</p>
<table align="center">
<tr align="center">
<td><img height="100px" width="100px" src="http://www.yourwealth.co.uk/sites/default/files/titleimage-mortgages.jpg"><p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Mortgages</p></td>
<td><img height="100px" width="100px" src="http://t0.gstatic.com/images?q=tbn:ANd9GcS0BNv0q30KMSumGx6p8Vp0UYwB_3IfBUD3HfKsruNW-qBb5qdUd4UPi1d9"><p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Savings</p></td>
<td><img height="100px" width="100px" src="http://www.clockwise.coop/Clockwise/media/SiteImages/News%20Items/%C2%A35-gift.jpg?width=200&height=200&ext=.jpg"><p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Home Equity</p></td>
</tr>
</table>
<p>You can also visit us on-line at TeraTitan, or call us with any questions you may have at 800-555-1212.</p>
</td>
</tr>
</table>
<!-- End Table for content-->

I'm with R Lacome. What exactly is the rendering issue?
Also, there seems to be a few "sloppy" coding things. Sometimes this doesn't make a difference, but if your code is "sloppy" you won't know where your real issue is.
Below is cleaned up HTML with a few tweaks. Try running that and see if it fixes your rendering issue.
I should also note that without a lot of inline CSS <p> tags don't offer a lot of consistency in email clients.
<table id="contentArea" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left">
<p>Welcome to the TeraTitan family ${user['FirstName']},</p>
<p>Please tell us which services you are interested in currently:</p>
</td>
</tr>
<tr>
<td align="left">
</td>
</tr>
<tr>
<td align="center">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<a href="http://www.teratitan.com/info/mortgage">
<img height="100px" width="100px" src="http://www.yourwealth.co.uk/sites/default/files/titleimage-mortgages.jpg">
<p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Mortgages</p>
</a>
</td>
<td align="center">
<a href="http://www.teratitan.com/info/savings">
<img height="100px" width="100px" src="http://t0.gstatic.com/images?q=tbn:ANd9GcS0BNv0q30KMSumGx6p8Vp0UYwB_3IfBUD3HfKsruNW-qBb5qdUd4UPi1d9">
<p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Savings</p>
</a>
</td>
<td align="center">
<a href="http://www.teratitan.com/info/homeequity">
<img height="100px" width="100px" src="http://www.clockwise.coop/Clockwise/media/SiteImages/News%20Items/%C2%A35-gift.jpg?width=200&height=200&ext=.jpg">
<p style="font-family:Verdana, Geneva, sans-serif; font-size:12px">Home Equity</p>
</a>
</td>
</tr>
</table>
</td>
</td>
<tr>
<td align="left">
</td>
</tr>
<tr>
<td align="left">
<p>You can also visit us on-line at TeraTitan, or call us with any questions you may have at 800-555-1212.</p>
</td>
</tr>
</table>
<!-- End Table for content-->

Related

Having problems with website coding, centering a picture

I'm having problems with the following code.
<tbody>
<tr align="center">
<td>
<p align="right"><font face="Arial, Helvetica, sans-serif"><strong>Processoren</strong>
<img src="images/IntelPentium4.jpg" align="middle" height="37" width="50"> </font></p>
</td>
<td>
<p align="right"><font face="Arial, Helvetica, sans-serif"><strong>Moederborden
</strong> <img src="images/MB.jpg" align="middle" height="47" width="47"> </font></p>
</td>
</tr>
<tr align="center">
<td height="54" width="50%">
<p align="right"><strong><font face="Arial, Helvetica, sans-serif">Geheugen <img src="images/geh.gif" align="middle" height="47" width="50"></font></strong></p>
</td>
<td height="54" width="50%">
<p align="right"><strong><font face="Arial, Helvetica, sans-serif">Grafische kaarten <img src="images/56326.jpg" align="middle" height="50" width="50"></font></strong></p></td>
</tr>
<br><br><br>
</tbody><tbody>
<tr align="right">
<td align="left"> <img src="images/gamepc1.png" width="140" > </td>
<td align="right"> <img src="images/gamepc2.jpg" width="120"> </td></tr>
</tbody><tr>
<td></td>
<td class="test11"><img src="images/annie2.png" width="140">
</td></tr>
<tbody>
<tr align="right">
<td align="left"> <img src="images/gamepc3.png" width="120"> </td>
<td align="right"> <img src="images/gamepc4.png" width="100"> </td>
</tr>
</tbody></table>
enter image description here
Basicly, I can't figure out how to center the anime picture. Please dont ask me why there is random anyme on this webpage, but the owner of the store wanted me to do that. I've tried so many options to center the picture, they just work. Could someone try to take a look at it and help me out?
I tried centering it with css rules, also tried margin-left shit but I cant figure out why its not reaction on such code.
I've never worked with and before. I'm a first year student who had to make some websites for school that worked out pretty good. My friend asked me if I could fix some stuff for his work's owner's website. This website is designed like 10years ago. I already asked him if I couldn't just make a new one, but he insisted that I need to use this one.
Could someone help me out? Thanks!
Inside your tbody with the image of the anime you are using two <td>.
You can delete the first <td></td> and use colspan="2" for the other td, so you will only need one td. This td will take the full width. Now you can easily center the image.
<td colspan="2" class="test11" style="text-align:center;">
<img src="images/annie2.png" width="140">
</td>
Result look like this (be aware, I have not included the sources of the images).

Image in HTML email signature varies in size

In the email signature I'm making for my company I have an embedded image on the left. When I preview the code in Chrome or my IDE the image is sized properly taking up the same height as the three lines of evenly-spaced text to its right. However, when others in my company receive emails from me, sometimes the image is significantly taller than the lines of text next to it. How do I ensure that my image stays a consistent size across devices and email clients?
<html>
<STYLE>A {text-decoration: none;} </STYLE><body>
<table data-mysignature-date="2019-09-17T19:52:14.752Z" data-mysignature-is-paid="0" width="500" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td
valign="center" width="0" style="padding:0 8px 0 0;vertical-align: middle;"><img alt="TETON Sports" width="100" style="width:67px;" src="https://tetonsports.imagerelay.com/ql/88530bbf8421421caccd471108c1fc18/email-icon.png">
</td>
<td style="font-size:1em;padding:0 0 0 0;vertical-align: top;" valign="top">
<table cellspacing="0" cellpadding="0" border="0" style="line-height: 1.4;font-family:Verdana, Geneva, sans-serif;font-size:90%;color: #000001;">
<tr>
<td>
<div style="font: 1.0em Helvetica, Geneva, sans-serif;color:#000001;">
[COMPANY NAME]
</div>
</td>
</tr>
<tr>
<td style="padding: 0px 0;">
<div style="color:#000001;font-family:Helvetica, Geneva, sans-serif;">
<b> Austin Berenyi </b>
<span style="color:#FF9E18;font-family:Helvetica, Geneva, sans-serif;"> <b>//</b> </span>
<span style="color:#54565A;font-family:Helvetica, Geneva, sans-serif;"> <i>Graphic Designer</i> </span>
</div>
</td>
</tr>
<tr>
<td>
<span style="font: 1.0em Helvetica, Geneva, sans-serif;color:#54565A;" <span><i>austin#company.com</i></span>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
It may sounds naive, but just try to specify height of your img:
<img alt="TETON Sports" style="width:67px; height: 48px;" src="https://tetonsports.imagerelay.com/ql/88530bbf8421421caccd471108c1fc18/email-icon.png">
In addition try to always set font-size of text (px or em) and try to avoid these values as percents.

I can't get this header working in a HTML email

I'm trying to make a template on MailChimp, but I can't style it properly. There are a few caveats though: the CSS styles have to be in-line and it has to be structured as <table> tags.
This is what I have so far
This is the end-goal
Here is my code so far:
<section id="header" style="background-color: #148e97;">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr>
<td align="center" valign="top">
<table border="0" cellpadding="20" cellspacing="0" width="600" id="emailHeader">
<tr>
<td align="right" valign="">
<div class="socialMediaIcons">
<img src="img/facebook.png"/>
<img src="img/twitter.png"/>
<img src="img/mail.png"/>
<img src="img/linkedin.png"/>
</div>
</td>
</tr>
</table>
<table id="title" width="500">
<tr>
<td align="left" valign="">
<img src="img/logo.png"/>
</td>
<td style="">
<h1 style="text-align: right; "
style="font-family: arial;">Brand USA E-News -- April 2016</h1>
</td>
</tr>
</table>
</td>
</tr>
</table>
</section>
When creating HTML emails, you need to transport yourself back in time, to a time when Internet Explorer 6 was cool.
You cannot use <section id="header"> or class="socialMediaIcons" because not all email clients support the <style> tag. HTML5 elements are most unsupported, and your CSS needs to be inlined and used with the style="..." attribute. There's a lot of mixed support for CSS in email clients, so you're forced to cater for the lowest common denominator.
The following code gives you a starting point for how to create your layout:
<html>
<body style="margin: 0; padding:0">
<table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#fff">
<tr>
<td valign="center">
<div style="background-color: #148e97; width:660px; margin:auto;">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="660" bgcolor="#148e97">
<tr>
<td width="30">
<img src="http://placehold.it/1x1" width="30" alt="Spacer">
</td>
<td width="130">
<img src="http://placehold.it/130x115" alt="Logo">
</td>
<td valign="top" width="500">
<table border="0" cellpadding="0" cellspacing="0" height="100%" width="500">
<tr>
<td>
<img src="http://placehold.it/1x1" width="1" height="20" alt="Spacer">
</td>
</tr>
<tr>
<td align="right">
<div class="socialMediaIcons">
<img src="http://placehold.it/24" alt="Social Icon" width="24" height="24" />
<img src="http://placehold.it/24" alt="Social Icon" width="24" height="24" />
<img src="http://placehold.it/24" alt="Social Icon" width="24" height="24" />
<img src="http://placehold.it/24" alt="Social Icon" width="24" height="24" />
</div>
</td>
</tr>
<tr>
<td align="right">
<h1 style="text-align: right; font-family: arial; color: #fff;">Brand USA E-News -- April 2016</h1>
</td>
</tr>
</table>
</td>
<td width="30"><img src="http://placehold.it/1x1" width="30" alt="Spacer"></td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>
One thing you'll notice is there are a lot of <table> tags in other <table> tags inside even more <table> tags. Things get messy.
I've used the old school technique of spacer.gif (using http://placehold.it/1x1 in lieu of a 1x1.gif image), which is no longer needed these days when building websites.
Hopefully this code sets you on the right path. I haven't built HTML emails for 5+ years, so I'm a little rusty.

HTML text really out of place

So I recently decided to download a HTML template for my site, after downloading it and setting it up it was going well, but text goes to the bottom rather than where I want it to go, here's some screenshots
http://imgur.com/VU8qDtf - That big empty box is where I want the text to go
http://imgur.com/05XfQKk - That is where the text actually goes
I'm new to HTML so excuse my noobness, but I did really well before running into this.
Here's the text code
<center><h2>Updates</h2></center>
<p style="color:white; font-size: 0.8em"> 20 September 2014 - You can now earn gold by working.</p>
<p style="color:white; font-size: 0.8em">20 September 2014 - Username now displays in the navigation pane.</p>
<p style="color:white; font-size: 0.8em">20 September 2014 - Your Stats page now fully functional.</p>
<p style="color:white; font-size: 0.8em">19 September 2014 - Added new registration page with increased security and validation.</p>
<p style="color:white; font-size: 0.8em">19 September 2014 - Removed login box from every page after logging in.</p>
<p style="color:white; font-size: 0.8em">19 September 2014 - Gold now a resource.</p>
<p style="color:white; font-size: 0.8em">19 September 2014 - Incorrect login now displays an error message</p>
<p style="color:white; font-size: 0.8em" >19 September 2014 - Added Rankings, Your Stats and Earn Gold pages. Not functional at the moment but will be as soon as possible.</p>
<p>Back to main page</p>
That is all on a seperate page, I have the rest (background and stuff) saved as header.php, let me know if you need that
Entire template code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>Free Layout(from Dandon.net)</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body topmargin="0" bottommargin="0" style="background-color: rgb(0, 0, 0);">
<center>
<table heigh="" cellpadding="0" cellspacing="0" width="800">
<tbody>
<tr>
<td colspan="2" background="images/lbar.png" height="500" width="38"></td>
<td valign="top">
<table cellpadding="0" cellspacing="0" height="631">
<tbody>
<tr>
<td valign="top"><img src="images/banner.jpg"></td>
</tr>
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0" height="450">
<tbody>
<tr>
<td valign="top">
<table cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td background="images/nav.png" height="17" width="178">
<div style="color:white" align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">Main</font></div>
</td>
</tr>
<tr>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"> » Home<br>
» Your stats<br>
» Units<br>
» Rankings<br>
» Online players<br>
» Updates<br>
» Logout<br>
</font></td>
</tr>
<tr>
<td background="images/nav.png" height="17" width="178">
<div style="color:white" align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1">Social</font></div>
</td>
</tr>
<tr>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"> » Chatroom<br>
» Forum<br>
</font></td>
</tr>
</tbody>
</table>
</td>
<td background="images/divider.png" width="11"></td>
<td valign="top">
<table cellpadding="0" cellspacing="0" height="460" width="535">
<tbody>
<tr>
<td background="images/content.png" height="17" width="535">
<div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="-1"></font></div>
</td>
</tr>
<tr>
<td valign="top"><font color="#ff9900" face="Verdana, Arial, Helvetica, sans-serif" size="-1"> </font></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td valign="bottom"><img src="images/footer.png"></td>
</tr>
</tbody>
</table>
</td>
<td colspan="2" background="images/rbar.png" height="500" width="38"></td>
</tr>
</tbody>
</table>
</center>
<div style="color:white; font-size: 0.8em; text-align: center; margin-top: 1em; margin-bottom: 1em;">
Design provided by <a href="http://www.freewebtemplates.com/">Free
Web Templates</a> - your source for free website templates<br>
Supported by Hosting24.com
</div>
</body></html>
You should probably remove the inline styling, add some classes and use text-align:center to center out your Updates feed. See fiddle: http://jsfiddle.net/hyfwgx5g/4/
EDIT: So here's the fiddle: http://jsfiddle.net/hyfwgx5g/6/ .
I wasn't sure if your updates feed is in a separate file or if you're manually adding it into the page. I've added a class updates-container to the table cell in which your code should live. Simply add it there, or like I said if you're importing a file add it using the include tag (for example <?php include 'updates.php';?> ).

HTML Email not displaying correctly in Outlook 2007

After a lot of time I put into researching. I still can't find an answer.
I have a HTML that is showing the wrong width in my tables. Here is a link to the html email: https://tagwebstore.com/email/tag-email-10percentmore.html and here is a screenshot of how it looks in Outlook 2007:
The main problem is the bottom area. The link of the html email displays it correctly. I have no idea what else to do from here. Here is my code for the bottom part I am having trouble with:
<table cellpadding="0" cellspacing="0" border="0" width="625" align="center" bgcolor="#FFFFFF">
<tr>
<td height="23" colspan="3" bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td width="25"> </td>
<td><table cellpadding="0" cellspacing="0" border="0">
<tr>
<td><img src="https://www.tagwebstore.com/email/testimonial-top.png" width="573" height="36" style="display:block;" /></td>
</tr>
<tr>
<td bgcolor="#f0d7c1" width="573"><table cellpadding="0" cellspacing="0" border="0" width="573">
<tr>
<td width="28"></td>
<td style="font-size:11px; line-height:18px; color:#000000; font-style:italic; font-family:Helvetica, Arial, sans-serif;" width="517"><table cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size:11px; line-height:18px; color:#000000; font-style:italic; font-family:Helvetica, Arial, sans-serif;">We’ve been using TAG for a while and we love TAG – we love the products. When we bring the products to Oklahoma City, nobody else has the products. It’s a big plus here for our market area. I think it would be a great thing for people to get online and see what TAG can do for them.</td>
</tr>
<tr align="right">
<td height="40" valign="bottom" style="font-size:11px; line-height:18px; color:#000000; font-style:normal; font-weight:bold; font-family:Helvetica, Arial, sans-serif;">Sirron Brown, Marketing Director<br />
Excell Home Care and Hospice, Oklahoma</td>
</tr>
</table></td>
<td width="28"></td>
</tr>
</table></td>
</tr>
<tr>
<td><img src="https://www.tagwebstore.com/email/testimonial-bottom.png" width="573" height="57" /></td>
</tr>
</table></td>
<td width="25"> </td>
</tr>
</table>
<!--Testimonial End-->
<!--Footer-->
<table cellpadding="0" cellspacing="0" border="0" width="625" align="center" bgcolor="#FFFFFF">
<tr>
<td colspan="3" height="20"> </td>
</tr>
<tr>
<td width="25"> </td>
<td width="575"><table cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="middle" width="295" style="font-family:Helvetica, Arial, sans-serif; font-size:12px;">info#tagwebstore.com | 866.232.6477</td>
<td width="178" style="font-family:Helvetica, Arial, sans-serif; font-size:12px;" valign="middle" align="right">Follow us on Twitter & YouTube</td>
<td valign="middle" width="102"><img src="https://www.tagwebstore.com/email/twitter.png" width="49" height="17" border="0" /><img src="https://www.tagwebstore.com/email/youtube.png" width="53" height="21" border="0" /></td>
</tr>
</table></td>
<td width="25"> </td>
</tr>
<tr>
<td colspan="3" height="20"> </td>
</tr>
</table>
<!--Footer End-->
The width of the containing table is suppose to be 625px. Any help is appreciated.
oh the joy of html emails
There are many rules you have to obey when dealing with HTML-based email, especially when you have exacting clients and pixel-perfect designs, and I am quite glad that I haven't had to work on such a project for at least two years now... The main reason for my utter dislike of the practice is primarily down to two email-clients. The first and all time worst being Lotus Notes 6.5.4 (to be fair it's over 10 years old now.. but still!), and the all time second worst(s), they're not even the best at being bad, Outlook 2007 and 2010!
Whoever thought it would be a good idea to use the Microsoft Word WYSIWYG HTML Engine to render HTML Emails in Outlook 2007 and 2010, must have been mad, lazy, lost or ever-so-slightly confused (delete as appropriate). It causes no end of rendering problems for developers, usually with random and inexplicable sizing calculations or padding problems.
Taken from my blog http://blog.pebbl.co.uk/2011/06/collapsible-html-email-and-outlook.html
Simply put, I do not envy you :)
I found the best way to help me out with my email troubles was to follow the following rules:
Never use colspans or rowspans.
Always set correct dimensions for your tables and cells.
Use spacer gifs rather than &nbps;.
Always specify correct image sizes and never scale images up or down.
Always add style="display:block;" to images.
Avoid using divs.
If you wish to colour links, put the styling on a span as a child inside the a tag.
Don't use italics.
Don't use BRs for layout, always use tables.
Use BRs in Text, not Ps (to avoid stange margin problems and paragraphing being completely ignored).
Because the sheer number of emails I used to get through ended up being ridiculous, I developed a script to help me with the work of checking dimensions and other possible pitfalls. If you're interested in using it you can find it here:
http://pastie.org/6250834
The script can be added as a usual script tag or enabled using GreaseMonkey or something similar (it was designed to work with Firefox but I see no reason why it shouldn't work elsewhere). Due to the way I used to build my emails, it will only enable itself if either the following conditions are met:
There is an outer wrapping table that has width="100%" set, used to centre the actual email content.
or... there is an outer element (a table or div) that has the id="base".
I've passed your HTML through it and the image below is the resulting output, it makes more sense when you have the actual page because you can hover over each bordered item and it will give you a rough idea of what the problem is (either that or you can just inspect the element directly with Firebug or similar).
So from inspecting the above it seems you have a few problems that need to be fixed, I'd say the most important ones are to get rid of rowspans and colspans (these always cause problems in Outlook) and to make sure all your dimensions tally correctly. Once you've fixed these issues you might see a considerable improvement, but then again you might not, there are no certainties in the hazardous life of HTML email building...
Hope it helps.
Try this for your top table:
<table cellpadding="0" cellspacing="0" border="0" width="625" align="center" bgcolor="#FFFFFF">
<tr>
<td height="23" bgcolor="#FFFFFF"> </td>
</tr>
<tr>
<td width="25"> </td>
<td width="575">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<img src="https://www.tagwebstore.com/email/testimonial-top.png" width="575" height="36" style="display:block;" />
</td>
</tr>
<tr>
<td bgcolor="#f0d7c1" width="575">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="28">
</td>
<td width="519" style="font-size:11px; line-height:18px; color:#000000; font-style:italic; font-family:Helvetica, Arial, sans-serif;">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td style="font-size:11px; line-height:18px; color:#000000; font-style:italic; font-family:Helvetica, Arial, sans-serif;">We’ve been using TAG for a while and we love TAG – we love the products. When we bring the products to Oklahoma City, nobody else has the products. It’s a big plus here for our market area. I think it would be a great thing for people to get online and see what TAG can do for them.
</td>
</tr>
<tr align="right">
<td valign="bottom" style="font-size:11px; line-height:18px; color:#000000; font-style:normal; font-weight:bold; font-family:Helvetica, Arial, sans-serif;">Sirron Brown, Marketing Director<br />
Excell Home Care and Hospice, Oklahoma</td>
</tr>
</table>
</td>
<td width="28">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<img src="https://www.tagwebstore.com/email/testimonial-bottom.png" width="575" height="57" style="display:block;" />
</td>
</tr>
</table>
</td>
<td width="25"> </td>
</tr>
</table>
and this for your bottom:
<table cellpadding="0" cellspacing="0" border="0" width="625" align="center" bgcolor="#FFFFFF">
<tr>
<td colspan="3" height="20"> </td>
</tr>
<tr>
<td width="25"> </td>
<td width="575">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="left" valign="middle" width="280" style="font-family:Helvetica, Arial, sans-serif; font-size:12px;">
info#tagwebstore.com | 866.232.6477
</td>
<td width="193" style="font-family:Helvetica, Arial, sans-serif; font-size:12px;" valign="middle" align="right">
Follow us on Twitter & YouTube
</td>
<td valign="middle" width="49">
<img src="https://www.tagwebstore.com/email/twitter.png" width="49" height="17" border="0" style="display:block;" />
</td>
<td valign="middle" width="53">
<img src="https://www.tagwebstore.com/email/youtube.png" width="53" height="21" border="0" style="display:block;" />
</td>
</tr>
</table>
</td>
<td width="25"> </td>
</tr>
<tr>
<td colspan="3" height="20"> </td>
</tr>
</table>
Overall it was coded really well, just changed a few small things, not saying each was a must have, but IF it works you can reverse engineer the changes to find out what busted it. I haven't tested it, so hopefully this works...