So I'm trying to send a newsletter using html code for rendering and making everything look readable, but when I send it out, the text is the html text (not rendered). I am using very little CSS code (just styling tables and body), the layout is done with tables. I read that email doesn't like divs for layout.
My code looks something like this:
Quote:
<html>
<head>
<link rel="stylesheet" type="text/css" href="screen.css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><table width="580" border="0" cellspacing="0" cellpadding="0"><tr><td>Something here</td><td>And Here</td></tr></table>
</tr>
</table>
</body>
</html>
*this is not the actual newsletter, it's just an example of what I use for styling.