Preciso usar imagens espaçadoras ao codificar emails em HTML?

Entendo que os e-mails em HTML precisam usar layouts realmente antigos - como muitas outras respostas sobre SO (por exemplo,E-mail em HTML: tabelas ou divs?, E-mail HTML usando CSS).

No entanto, parece haver algum debate sobre se ainda é uma boa ideia usar os spacer gifs no email.

Por exemplo, compare estes três layouts:

DIMENSÕES:

<table cellpadding="0" cellspacing="0" border="0" width="100">
  <tr>
    <td width="100" height="10"></td>
  </tr>
</table>

COM SPIFER GIF:

<table cellpadding="0" cellspacing="0" border="0">
  <tr>
    <td><img src="spacer.gif" width="100" height="10"></td>
  </tr>
</table>

COM GIF E DIMENSÕES DO ESPAÇADOR:

<table cellpadding="0" cellspacing="0" border="0" width="100">
  <tr>
    <td width="100" height="10"><img src="spacer.gif" width="100" height="10"></td>
  </tr>
</table>

Como eu os uso com dimensões? Existe algum cliente de email que ainda exija spacer gifs? Há algum dano feito de qualquer maneira?

questionAnswers(4)

yourAnswerToTheQuestion