Skip to content

Aliança Lilly - Boheringer snippets

When doing an email for Boheringer, the footer and signatures are different.

Signature

The signature uses the standard SalesForce tags plus includes a picture.

WARNING

Snippet doesn't contain table tag

html
<!-- Signature : END -->
<tr>
  <td
    style="padding:20px 40px 20px; font-family: sans-serif;font-size: 14px; line-height: 24px; color: #56565a;"
    class="m-reduce-padding"
  >
    <p style="margin: 0 0 20px">
      {{customText[[Com os melhores
      cumprimentos|Cumprimentos|Cordialmente|Atenciosamente|Beijinhos]}},
    </p>

    <!-- two col sig : BEGIN -->
    <table
      role="presentation"
      border="0"
      cellpadding="0"
      cellspacing="0"
      width="100%"
    >
      <tr>
        <td valign="top" align="left" width="180" style="line-height: 1;">
          {{userPhoto}}
          <!-- <img src="https://www.seekpng.com/png/detail/110-1100707_person-avatar-placeholder.png" alt="" width="160" height="120" /> -->
        </td>
        <td
          valign="top"
          align="left"
          style=" font-family: sans-serif;font-size: 14px; line-height: 24px; color: #56565a;"
        >
          <p style="margin-top: 0;">
            {{userName}} <br />
            {{User.Title}} <br />
            <a style="color: #009c98" href="mailto:{{userEmailAddress}}"
              >{{userEmailAddress}}</a
            >
            <br />
            {{User.MobilePhone}}
          </p>
        </td>
      </tr>
    </table>
    <!-- two col sig : END -->
  </td>
</tr>
<!-- Signature : END -->

Before including the footers and feedback blocks

Be sure to include the required styles in the head of your email. Here they are in full, mix and match at your own discretion.

Aliança Boehringer Standard Head
html
<head>
	<meta charset="utf-8"> <!-- utf-8 works for most cases -->
	<meta name="viewport" content="width=device-width"> <!-- Forcing initial-scale shouldn't be necessary -->
	<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- Use the latest (edge) version of IE rendering engine -->
	<meta name="x-apple-disable-message-reformatting">  <!-- Disable auto-scale in iOS 10 Mail entirely -->
	<meta name="format-detection" content="telephone=no,address=no,email=no,date=no,url=no"> <!-- Tell iOS not to automatically link certain text strings. -->
	<meta name="color-scheme" content="light">
	<meta name="supported-color-schemes" content="light">
	<title>Nova terapêutica para a DT2: Glyxambi</title> <!--   The title tag shows in email notifications, like Android 4.4. -->

	<!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
	<!--[if gte mso 9]>
	<xml>
		<o:OfficeDocumentSettings>
			<o:AllowPNG/>
			<o:PixelsPerInch>96</o:PixelsPerInch>
		</o:OfficeDocumentSettings>
	</xml>
	<![endif]-->

	<!-- Web Font / @font-face : BEGIN -->
	<!-- NOTE: If web fonts are not required, lines 23 - 41 can be safely removed. -->

	<!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
	<!--[if mso]>
		<style>
			* {
				font-family: sans-serif !important;
			}
		</style>
	<![endif]-->

	<!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: http://stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
	<!--[if !mso]><!-->
	<!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
	<!--<![endif]-->

	<!-- Web Font / @font-face : END -->

	<!-- CSS Reset : BEGIN -->
	<style>

		/* What it does: Tells the email client that only light styles are provided but the client can transform them to dark. A duplicate of meta color-scheme meta tag above. */
		:root {
			color-scheme: light;
			supported-color-schemes: light;
		}

		/* What it does: Remove spaces around the email design added by some email clients. */
		/* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
		html,
		body {
			margin: 0 auto !important;
			padding: 0 !important;
			height: 100% !important;
			width: 100% !important;
		}

		/* What it does: Stops email clients resizing small text. */
		* {
			-ms-text-size-adjust: 100%;
			-webkit-text-size-adjust: 100%;
		}

		/* star stuff */
		* [lang~="x-star-wrapper"]:hover *[lang~="x-full-star"] {
		color: #878787 !important;
		}
		* [lang~="x-star-wrapper"]:hover ~ *[lang~="x-star-wrapper"] *[lang~="x-full-star"] {
		color: #878787 !important;
		}

		/* What it does: Centers email on Android 4.4 */
		div[style*="margin: 16px 0"] {
			margin: 0 !important;
		}

		/* What it does: forces Samsung Android mail clients to use the entire viewport */
		#MessageViewBody, #MessageWebViewDiv{
			width: 100% !important;
		}

		/* What it does: Stops Outlook from adding extra spacing to tables. */
		table,
		td {
			mso-table-lspace: 0pt !important;
			mso-table-rspace: 0pt !important;
		}

		/* What it does: Fixes webkit padding issue. */
		table {
			border-spacing: 0 !important;
			border-collapse: collapse !important;
			table-layout: fixed !important;
			margin: 0 auto !important;
		}

		/* What it does: Uses a better rendering method when resizing images in IE. */
		img {
			-ms-interpolation-mode:bicubic;
		}

		/* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
		a {
			text-decoration: none;
		}

		/* What it does: A work-around for email clients meddling in triggered links. */
		a[x-apple-data-detectors],  /* iOS */
		.unstyle-auto-detected-links a,
		.aBn {
			border-bottom: 0 !important;
			cursor: default !important;
			color: inherit !important;
			text-decoration: none !important;
			font-size: inherit !important;
			font-family: inherit !important;
			font-weight: inherit !important;
			line-height: inherit !important;
		}

		/* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
		.a6S {
			display: none !important;
			opacity: 0.01 !important;
		}

		/* What it does: Prevents Gmail from changing the text color in conversation threads. */
		.im {
			color: inherit !important;
		}

		/* If the above doesn't work, add a .g-img class to any image in question. */
		img.g-img + div {
			display: none !important;
		}

		/* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
		/* Create one of these media queries for each additional viewport size you'd like to fix */

		/* iPhone 4, 4S, 5, 5S, 5C, and 5SE */
		@media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
			u ~ div .email-container {
				min-width: 320px !important;
			}
		}
		/* iPhone 6, 6S, 7, 8, and X */
		@media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
			u ~ div .email-container {
				min-width: 360px !important;
			}
		}
		/* iPhone 6+, 7+, and 8+ */
		@media only screen and (min-device-width: 414px) {
			u ~ div .email-container {
				min-width: 414px !important;
			}
		}

	</style>
	<!-- CSS Reset : END -->

	<!-- Progressive Enhancements : BEGIN -->
	<style>

		/* What it does: Hover styles for buttons */
		.button-td,
		.button-a {
			transition: all 100ms ease-in;
		}
		.button-td-primary:hover,
		.button-a-primary:hover {
			background: #555555 !important;
			border-color: #555555 !important;
		}

		/* Media Queries */
		@media screen and (max-width: 600px) {

			/* What it does: Adjust typography on small screens to improve readability */
			.email-container p {
				font-size: 16px !important;
			}
			.email-container h3 {
				font-size: 17px !important;
				line-height: 20px !important;
			}
			.footer p {
				font-size: 12px !important;
			}

			.banner-icon-col {
				width: 28% !important;
			}
			.title-text-col-num {
				width: 72% !important;
			}

			/* What it does: Forces table cells into full-width rows. */
			.stack-column,
			.stack-column-center {
					display: block !important;
					width: 100% !important;
					max-width: 100% !important;
					direction: ltr !important;
			}
			/* And center justify these ones. */
			.stack-column-center {
					text-align: center !important;
			}

			.mobile-center {
					text-align: center !important;
			}

			.hide-mob {
				display: none !important;
			}
			.show-mobile {
				display: block !important;
				visibility: visible !important;
				max-height: 100% !important;
			}
			.show-mobile-table {
				display: table !important;
				visibility: visible !important;
				max-height: 100% !important;
			}

			.mobile-remove-pad {
				padding: 0 !important;
			}

			.v-text {
				writing-mode: tb-rl;
			}
			.table-cols-reduce-w {
				width: 13% !important;
				text-align: center;
				white-space: nowrap;
			}

			.m-reduce-padding {
				padding-right: 15px !important;
				padding-left: 15px !important;
			}
			.m-reduce-margin {
				margin-right: 15px !important;
				margin-left: 15px !important;
			}

			* [lang~="x-star-wrapper"] {
			  pointer-events: none !important;
			}
			* [lang~="x-full-star"] {
			  pointer-events: auto !important;
			}

		}

	</style>
	<!-- Progressive Enhancements : END -->

</head>

WARNING

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

Download footer images

Aliança Boehringer Feedback Section
html
<!-- Feedback section : BEGIN -->
<tr>
	<td style="padding:10px 40px 30px; font-family: sans-serif;font-size: 14px; line-height: 24px; color: #56565a; text-align: center;" class="m-reduce-padding">

		<p style="margin: 0;">
			Gostou deste email? Partilhe connosco										
		</p>

		<table role="presentation" border="0" cellpadding="0" cellspacing="0" align="center" dir="rtl">
			<tr style="font-family: sans-serif;font-size: 20px; line-height: 24px; color: #56565a;">
				
				<td valign="top" align="left" width="45" class="star-wrapper" lang="x-star-wrapper" style="line-height: 1;">
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="star" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;5&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 23px; margin: 0; padding: 0;" xml:lang="x-full-star">★</a>
					</p>
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="rating" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;5&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 15px; margin: 0; padding: 0;" xml:lang="x-full-star">5</a>
					</p>
				</td>

				<td valign="top" align="left" width="45" class="star-wrapper" lang="x-star-wrapper" style="line-height: 1;">
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="star" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=4&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;4&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 23px; margin: 0; padding: 0;" xml:lang="x-full-star">★</a>
					</p>
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="rating" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=4&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;4&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 15px; margin: 0; padding: 0;" xml:lang="x-full-star">4</a>
					</p>
				</td>
				
				<td valign="top" align="left" width="45" class="star-wrapper" lang="x-star-wrapper" style="line-height: 1;">
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="star" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;3&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 23px; margin: 0; padding: 0;" xml:lang="x-full-star">★</a>
					</p>
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="rating" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;3&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 15px; margin: 0; padding: 0;" xml:lang="x-full-star">3</a>
					</p>
				</td>
				
				<td valign="top" align="left" width="45" class="star-wrapper" lang="x-star-wrapper" style="line-height: 1;">
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="star" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;2&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 23px; margin: 0; padding: 0;" xml:lang="x-full-star">★</a>
					</p>
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="rating" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;2&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 15px; margin: 0; padding: 0;" xml:lang="x-full-star">2</a>
					</p>
				</td>

				<td valign="top" align="left" width="45" class="star-wrapper" lang="x-star-wrapper" style="line-height: 1;">
					<!-- ★ -->
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="star" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;1&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 23px; margin: 0; padding: 0;" xml:lang="x-full-star">★</a>
					</p>
					<p class="text-center" style="margin: 0; padding: 0;" align="center">
						<a class="rating" href="https://boehringeringelheim.eu.qualtrics.com/jfe/form/SV_5z1tdRYW6y0TKn3?country=portugal&product=jardiance&TA=unbranded&assetID=47590&mt=AE&Rate=5&Q_PopulateResponse={&quot;QID4&quot;:{&quot;1&quot;:&quot;1&quot;}}" target="_blank" lang="x-full-star" style="display: inline-block; width: 100%; color: #bfbfbf; text-decoration: none; font-size: 15px; margin: 0; padding: 0;" xml:lang="x-full-star">1</a>
					</p>
				</td>
			</tr>
		</table>

	</td>
</tr>
<!-- Feedback section : END -->

Feedback Stars

WARNING

Snippet doesn't contain table tag

Aliança Boehringer Footer
html
<!-- footer logos : BEGIN -->
<tr class="footer">
	<td style="padding:25px 15px 5px; background-color: #EFEFEF;">
		<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
			<tr>
				<td valign="top" width="50%" class="">
					<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
						<tr>
							<td style="text-align: left; font-family: sans-serif; font-size: 11px; line-height: 15px; color: #555555; padding: 0px 0px 0 0; mso-line-height-rule:at-least">
								<a href="#" title="Boheringer Ingelheim">
									<img src="../assets/images/logo-boheringer.png" width="129" height="" alt="Logo boheringer" border="0" style="width: 100%; max-width: 129px; background: transparent; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555;">
								</a>
							</td>
						</tr>
					</table>
				</td>
				<td valign="top" width="50%" class="">
					<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
						<tr>
							<td style="text-align: right; padding: 0px 0px 0 0px;" class="">
								<img src="../assets/images/lilly_logo.png" width="92" height="" alt="Lilly Logo" border="0" style="width: 100%; max-width: 92px; background: transparent; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #555555;">
							</td>
						</tr>
					</table>
				</td>
			</tr>
		</table>
	</td>
</tr>
<!-- footer logos : END -->

<!-- footer: 2 Even Columns : BEGIN -->
<tr class="footer">
	<td style="padding:0 15px; background-color: #EFEFEF;">
		<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
			<tr>
				<td valign="top" width="50%" class="stack-column">
					<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
						<tr>
							<td style="text-align: left; font-family: sans-serif; font-size: 11px; line-height: 15px; color: #555555; padding: 0px 0px 0 0; mso-line-height-rule:at-least">
								<p style="margin: 0;" class="mobile-center">
									Av. De Pádua, 11.<br />
									1800-294 Lisboa
								</p>
							</td>
						</tr>
					</table>
				</td>
				<td valign="top" width="50%" class="stack-column-center">
					<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
						<tr>
							<td style="text-align: right; font-family: sans-serif; font-size: 12px; line-height: 15px; color: #555555; padding: 5px 0px 0 0px;" class="mobile-center">
								<p style="margin: 0;">
									© 2021 Boehringer Ingelheim. Todos os direitos reservados. 
								</p>
							</td>
						</tr>
					</table>
				</td>
			</tr>
		</table>
	</td>
</tr>
<!-- footer: 2 Even Columns : END -->

<!-- final sentence : BEGIN -->
<tr class="footer">
	<td style="padding:20px 15px; background-color: #EFEFEF; font-family: sans-serif; font-size: 12px; line-height: 15px; color: #555555; text-align: center;">
		<p style="margin: 0;">Para mais informações sobre proteção de dados consulte a nossa <a href="https://www.boehringer-ingelheim.pt/politica-de-privacidade" target="_blank" style="color: #000000; text-decoration: underline;">política de privacidade</a>.<br />Caso pretenda cancelar a subscrição deste e/ou de outros emails enviados pela Boehringer Ingelheim Portugal Lda., utilize este <a href="{{unsubscribe_product_link[,PT_1]}}" target="_blank" style="color: #000000; text-decoration: underline;">link</a>.</p>
	</td>
</tr>
<!-- final sentence : END -->

<!-- final sentence : BEGIN -->
<tr class="footer">
	<td style="padding:0 20px 15px; background-color: #EFEFEF; font-family: sans-serif; font-size: 12px; line-height: 15px; color: #555555; text-align: center;">
		<p style="margin: 0;">Resumo das Características do Medicamento</p>
		<p>
			<a href="{{$113217}}" target="_blank" style="color: #000; text-decoration: underline;">RCM Jardiance</a> |

			<a href="{{$451190}}" target="_blank" style="color: #000; text-decoration: underline;">RCM Glyxambi</a> |

			<a href="{{$256321}}" target="_blank" style="color: #000; text-decoration: underline;">RCM Synjardy</a>
		</p>
		<p>
			PC-PT-101833_set2021
		</p>
	</td>
</tr>
<!-- final sentence : END -->

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