Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save code-nation/ecbcd765877b22b6fb09273bdf819c6c to your computer and use it in GitHub Desktop.
Save code-nation/ecbcd765877b22b6fb09273bdf819c6c to your computer and use it in GitHub Desktop.
{% if body contains "###" %}
{% assign body_parts = body | split:'###' %}
{{ body_parts[0] }}
{% assign button_parts = body_parts[1] | strip_html | split:'|' %}
<!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="{{ button_parts[1] }}" style="height:40px;v-text-anchor:middle;width:220px;" arcsize="10%" strokecolor="#47b2a9" fillcolor="#47b2a9">
<w:anchorlock/>
<center style="color:#ffffff;font-family:sans-serif;font-size:13px;font-weight:bold;">{{ button_parts[0] }}</center>
</v:roundrect>
<![endif]-->
<a href="{{ button_parts[1] }}" style="background-color:#47b2a9;border:1px solid #47b2a9;border-radius:4px;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:13px;font-weight:bold;line-height:40px;text-align:center;text-decoration:none;width:220px;-webkit-text-size-adjust:none;mso-hide:all;">{{ button_parts[0] }}</a>
{{ body_parts[2] }}
{% else %}
{{ body }}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment