Skip to content

Tecnimede Emails

This emails must be developed for SFMC, using the required SFMC variables.
The client is extra cautious and checks everything, even how the email looks on mobile and on dark mode.
After revision and approval of developed email, a zipped folder containting the images and the html must be added to task.

Variables

The variables used are:

  1. At the beginning of the email, to view email on browser: %%view_email_url%%
  2. Ate the end of the email(footer), to manage subscription: %%profile_center_url%%

Images

There are two things that must look at carefully, regarding images for this emails:

1. Hosting

SFMC emails must have the images hosted and a link must be used in src, instead of a path. Since we don't have access to Tecnimede's SFMC, the required images must hosted in Float's EMKT server, using the path:

/tecnimede/2024/[product-folder]/[new-folder-name]

2. Dark Mode

The dark mode must be taken in consideration so, images that are dark, like logos, will loose visibility in dark mode. To fix this issue, a glow can be added using Photoshop (there is an exapmle in footer images' folder). Also, look at the images with opacity, if they have text, they will also loose visibility, consider adding an extra white layer before the one with opacity, or find a similar color and replace it.

WARNING

Snippet doesn't contain table tag. Includes images for download bellow.

Download footer images

Tecnimede's footer
html
<!-- footer : BEGIN -->
<tr class="footer">
  <td style="padding: 0 40px 30px; background-color: #ebeaea;" class="m-reduce-padding">
    <!--Footer-->
    <table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
      <tr>
        <td
          style="font-family:Arial, Helvetica, sans-serif;font-size: 10px; line-height: 12px; color: #747879; background-color: #ebeaea;"
          class="footer">
          <p style="margin: 10px 0; font-size: 9px; line-height: 12px;">
            Este email foi-lhe enviado porque aceitou receber informação da Tecnimede. A
            informação aqui partilhada é apenas dirigida a si, como tal, não poderá ser
            reencaminhada para terceiros.
          </p>
        </td>
      </tr>
      <tr>
        <td>
          <table role="presentation" align="left" cellspacing="0" cellpadding="0" border="0" width="100%">
            <tr>
              <td width="160" align="left" style="background-color: #ebeaea;" class="footer">
                <a target="_blank" href="www.tecnimede.com">
                  <img alt="Tecnimede Grupo" height="auto"
                    src="https://emkt.float.pt/tecnimede/2024/tenossis/2024-11-18__Tenossis_Email_Horas/images/logo-tecnimede-glow.png"
                    style="display: block; height: auto; border: 0; width: 100%; max-width: 130px;"
                    title="Tecnimede Grupo" width="130" class="farmaco1" />
                </a>
              </td>
              <td style="padding-right: 30px; background-color: #ebeaea;" class="footer">
                <a href="tel:+351800202838">
                  <img alt="Farmacovigilância 800 20 28 38 Linha Verde" height="auto"
                    src="https://emkt.float.pt/tecnimede/2024/tenossis/2024-11-18__Tenossis_Email_Horas/images/logo-farmacovigilancia-bg.png"
                    style="display: block; height: auto; border: 0; width: 100%; max-width: 35px;"
                    title="Farmacovigilância 800 20 28 38 Linha Verde" width="35" class="farmaco" />
                </a>
              </td>
            </tr>
          </table>
        </td>
      </tr>
      <tr>
        <td
          style="font-family:Arial, Helvetica, sans-serif;font-size: 10px; line-height: 12px; color: #747879; background-color: #ebeaea"
          class="footer">
          <p style="margin: 10px 0; font-size: 9px; line-height: 12px;">
            <a href="www.tecnimede.com"
              style="color: #414143;color: #747879; text-decoration: underline;">www.tecnimede.com</a>
            |
            tlf: <a href="#" style="color: #747879; text-decoration: none;">210414100</a>
            <br />
            Tecnimede - Sociedade Técnico-Medicinal, SA | Rua da Tapada Grande, 2, 2710-080
            Abrunheira | <a href="#" style="color: #747879; text-decoration: none;">NIPC:
              500 626 413</a> <br />
            Copyright <sup style="line-height: 0;">&copy;</sup> 2024 Grupo Tecnimede. Todos
            os direitos reservados. PT-M1648, outubro 2024, revalidado anualmente
          </p>
        </td>
      </tr>
      <tr>
        <td style="font-family:Arial, Helvetica, sans-serif;font-size: 9px; line-height: 12px; color: #414143;"
          class="footer">
          <p style="margin: 12px 0;">
            <a href="https://www.tecnimede.com/pt-pt/politica-de-privacidade"
              style="color: #747879; text-decoration: underline; font-weight: bold;">Política
              de privacidade</a> &nbsp;&nbsp;&nbsp;&nbsp;
            <a href="%%profile_center_url%%"
              style="color: #747879; text-decoration: underline; font-weight: bold;">Gerir
              subscrição</a>
          </p>
        </td>
      </tr>
    </table>
    <!--Footer-->
  </td>
</tr>
<!-- footer: 2 Even Columns : END -->

<!-- Clear Spacer : BEGIN -->
<tr>
  <td aria-hidden="true" height="40" style="font-size: 0px; line-height: 0px;">
    &nbsp;
  </td>
</tr>
<!-- Clear Spacer : END -->