1
resposta

Colocar duas fotos dentro da mesma <td>

Dentro desse projeto queria colocar duas imagens dentro da mesma

e não estou conseguindo, como proceder? Exemplo abaixo com uma só.
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="640" style="margin: auto;" class="email-container">
        <!-- Email Header : INICIO -->
        <tr>
            <td align="right" style="padding: 20px 0; text-align: right!important;">
                <img src="/images/IPRT01.png" width="60" height="60" alt="alt_text" border="0" style="height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; padding-right: 20px;">
            </td>
        </tr>
</table>

1 resposta

Boa tarde, Thomaz! Tudo bem?

Testei seu código mas inserindo no lugar do caminho da imagem o link de um gerador aleatório:

<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="640" style="margin: auto;" class="email-container">
        <!-- Email Header : INICIO -->
        <tr>
            <td align="right" style="padding: 20px 0; text-align: right!important;">
                <img src="https://picsum.photos/200" width="60" height="60" alt="alt_text" border="0" style="height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; padding-right: 20px;">
                  <img src="https://picsum.photos/200" width="60" height="60" alt="alt_text" border="0" style="height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555; padding-right: 20px;">
            </td>
        </tr>
</table>

E resultou em mostrar as duas imagens dentro da mesma <td>.

O problema seria a imagem não carregar? Caso seja isso, talvez o caminho da imagem no seu computador esteja incorreto. Se for outra coisa, consegue dar mais detalhes?

Bons estudos!