Outlook Outlook 2007, or more specifically the Word engine, has a document length limit of 23.7 inches, or around 1800 pixels. When the email hits
Read moreOutlook specific CSS
https://cm.engineering/fixing-bugs-with-outlook-specific-css-f4b8ae5be4f4 The most common way to code Outlook targeted CSS is by placing an embedded stylesheet inside a conditional comment. <!– [if mso]> <style type="text/css">
Read moreProprietary Microsoft CSS properties
https://cm.engineering/fixing-bugs-with-outlook-specific-css-f4b8ae5be4f4 In order to maintain support for both HTML documents and various Office specific functionality, Word generates markup with a mix of standard CSS and
Read moreSnippets
CSS Opacity <style> .transparent:hover { -khtml-opacity: 0.75; -moz-opacity: 0.75; -ms-filter: progid: DXImageTransform.Microsoft.Alpha(opacity=75); filter: alpha(opacity=75); opacity: 0.75; zoom: 1
Read moreAMPScript ProperCase & Trim
Good %%[ VAR @fName, @FN_Trim, @FN_PC Set @fName = [First Name] If not empty(@fname) then ( Set @FN_Trim = Trim(@fName) Set @FN_PC =
Read moreAMPScript functions
System variables: Unique JobID for email send = %%JobID%% Email name = %%emailName_%% Subscriber email address = %%emailaddr%% View online = %%view_email_url%% Forward to a
Read moreHidden preheader text
<div style="display: none; visibility: hidden; mso-hide: all; opacity: 0; color: transparent; height: 0; width: 0; line-height: 0; overflow: hidden;"> PREHEADER TEXT GOES HERE
Read moreButtons
Button <table border="0" width="600" cellspacing="0" cellpadding="0" align="center"> <tbody> <tr> <td style="font-size: 15px; line-height: 15px;" height="15"></td> </tr> <tr> <td> <table style="background-color: #019b5f; border: 10px solid #019b5f;
Read moreEmail-safe fonts
font-family: Arial, Helvetica, sans-serif; font-family: Georgia, serif; font-family: ‘Palatino Linotype’, ‘Book Antiqua’, Palatino, serif; font-family: ‘Times New Roman’, Times, serif; font-family: ‘Arial Black’, Gadget, sans-serif;
Read moreGood Morning/Afternoon AMPScript
The datediff() function is your friend. It’s pretty tolerant to all kinds of dates and times. You can comment/uncomment the set @now lines to suit
Read more