diff --git a/lib/Newsletter/Renderer/Blocks/Button.php b/lib/Newsletter/Renderer/Blocks/Button.php index fa3b07c1de..b34223cd58 100644 --- a/lib/Newsletter/Renderer/Blocks/Button.php +++ b/lib/Newsletter/Renderer/Blocks/Button.php @@ -3,7 +3,6 @@ use MailPoet\Newsletter\Renderer\StylesHelper; class Button { - static function render($element) { $stylesHelper = new StylesHelper(); @@ -45,5 +44,4 @@ class Button { return $template; } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Blocks/Divider.php b/lib/Newsletter/Renderer/Blocks/Divider.php index 684494eaf7..ccab9ce7a4 100644 --- a/lib/Newsletter/Renderer/Blocks/Divider.php +++ b/lib/Newsletter/Renderer/Blocks/Divider.php @@ -1,7 +1,6 @@ @@ -21,5 +20,4 @@ class Divider { return $template; } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Blocks/Footer.php b/lib/Newsletter/Renderer/Blocks/Footer.php index e3387726f2..005c75f62c 100644 --- a/lib/Newsletter/Renderer/Blocks/Footer.php +++ b/lib/Newsletter/Renderer/Blocks/Footer.php @@ -3,7 +3,6 @@ use MailPoet\Newsletter\Renderer\StylesHelper; class Footer { - static function render($element) { $stylesHelper = new StylesHelper(); @@ -28,5 +27,4 @@ class Footer { return $template; } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Blocks/Header.php b/lib/Newsletter/Renderer/Blocks/Header.php index 8bfe1508cf..3be509324c 100644 --- a/lib/Newsletter/Renderer/Blocks/Header.php +++ b/lib/Newsletter/Renderer/Blocks/Header.php @@ -3,7 +3,6 @@ use MailPoet\Newsletter\Renderer\StylesHelper; class Header { - static function render($element) { $stylesHelper = new StylesHelper(); @@ -28,5 +27,4 @@ class Header { return $template; } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Blocks/Image.php b/lib/Newsletter/Renderer/Blocks/Image.php index 82472fb2c6..92cc0b0327 100644 --- a/lib/Newsletter/Renderer/Blocks/Image.php +++ b/lib/Newsletter/Renderer/Blocks/Image.php @@ -3,7 +3,6 @@ use MailPoet\Newsletter\Renderer\StylesHelper; class Image { - static function render($element) { $stylesHelper = new StylesHelper(); @@ -22,5 +21,4 @@ class Image { return $template; } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Blocks/Renderer.php b/lib/Newsletter/Renderer/Blocks/Renderer.php index f06d8548d3..3db1285863 100644 --- a/lib/Newsletter/Renderer/Blocks/Renderer.php +++ b/lib/Newsletter/Renderer/Blocks/Renderer.php @@ -1,8 +1,7 @@ createElementFromBlockType($block); if(isset($block['blocks'])) { diff --git a/lib/Newsletter/Renderer/Blocks/Social.php b/lib/Newsletter/Renderer/Blocks/Social.php index 3285f96111..241e4cca84 100644 --- a/lib/Newsletter/Renderer/Blocks/Social.php +++ b/lib/Newsletter/Renderer/Blocks/Social.php @@ -1,7 +1,6 @@ "Arial, 'Helvetica Neue', Helvetica, sans-serif", 'Comic Sans MS' => "'Comic Sans MS', 'Marker Felt-Thin', Arial, sans-serif", @@ -112,5 +111,4 @@ EOD; return preg_replace($pattern, '', $html); } - } \ No newline at end of file diff --git a/lib/Newsletter/Renderer/Columns/Renderer.php b/lib/Newsletter/Renderer/Columns/Renderer.php index 236ee2d9fb..975d9bba02 100644 --- a/lib/Newsletter/Renderer/Columns/Renderer.php +++ b/lib/Newsletter/Renderer/Columns/Renderer.php @@ -1,7 +1,6 @@ 600, 2 => 300, @@ -15,7 +14,6 @@ class Renderer { ); function render($columnsCount, $columnsData) { - $columnWidth = $this->columnWidths[$columnsCount]; $columnClass = $this->columnClasses[$columnsCount]; diff --git a/lib/Newsletter/Renderer/Renderer.php b/lib/Newsletter/Renderer/Renderer.php index 963d376eea..c7cb08f0dd 100644 --- a/lib/Newsletter/Renderer/Renderer.php +++ b/lib/Newsletter/Renderer/Renderer.php @@ -3,7 +3,6 @@ namespace MailPoet\Newsletter\Renderer; if(!defined('ABSPATH')) exit; class Renderer { - public $template = 'Template.html'; function __construct($newsletterData) { @@ -17,8 +16,8 @@ class Renderer { } function renderAll() { - $newsletterContent = $this->renderContent($this->data['data']); - $newsletterStyles = $this->renderStyles($this->data['styles']); + $newsletterContent = $this->renderContent($this->data['content']); + $newsletterStyles = $this->renderStyles($this->data['globalStyles']); $renderedTemplate = $this->renderTemplate($this->template, array( $newsletterStyles, @@ -30,12 +29,12 @@ class Renderer { } function renderContent($content) { - array_map(function ($contentBlock) use (&$newsletterContent) { + $newsletterContent = array_map(function ($contentBlock) { $columnCount = count($contentBlock['blocks']); $columnData = $this->blocksRenderer->render($contentBlock); - $newsletterContent .= $this->columnsRenderer->render($columnCount, $columnData); + return $this->columnsRenderer->render($columnCount, $columnData); }, $content['blocks']); - return $newsletterContent; + return implode('', $newsletterContent); } function renderStyles($styles) { @@ -45,13 +44,13 @@ class Renderer { case 'text': $selector = 'span.paragraph, ul, ol'; break; - case 'background': + case 'body': $selector = '.mailpoet_content-wrapper'; break; case 'link': $selector = '.mailpoet_content-wrapper a'; break; - case 'newsletter': + case 'wrapper': $selector = '.mailpoet_container, .mailpoet_col-one, .mailpoet_col-two, .mailpoet_col-three'; break; } diff --git a/lib/Newsletter/Renderer/StylesHelper.php b/lib/Newsletter/Renderer/StylesHelper.php index dd0339b568..1898cdc492 100644 --- a/lib/Newsletter/Renderer/StylesHelper.php +++ b/lib/Newsletter/Renderer/StylesHelper.php @@ -1,7 +1,6 @@ 'background-color', 'fontColor' => 'color', @@ -16,22 +15,20 @@ class StylesHelper { 'lineHeight' => 'line-height' ); - function getBlockStyles($element, $ignore = false) { + function getBlockStyles($element) { if(!isset($element['styles']['block'])) { return; } - return $this->getStyles($element['styles'], 'block', $ignore); + return $this->getStyles($element['styles'], 'block'); } - function getStyles($data, $type, $ignore = false) { - array_map(function ($attribute, $style) use (&$styles, $ignore) { - if(!$ignore || !in_array($attribute, $ignore)) { - $styles .= $this->translateCSSAttribute($attribute) . ': ' . $style . ' !important;'; - } + function getStyles($data, $type) { + $styles = array_map(function ($attribute, $style) { + return $this->translateCSSAttribute($attribute) . ': ' . $style . ' !important;'; }, array_keys($data[$type]), $data[$type]); - return $styles; + return implode('', $styles); } function translateCSSAttribute($attribute) { diff --git a/lib/Newsletter/Renderer/Template.html b/lib/Newsletter/Renderer/Template.html index 9e44d82dd2..283b37326d 100644 --- a/lib/Newsletter/Renderer/Template.html +++ b/lib/Newsletter/Renderer/Template.html @@ -151,7 +151,7 @@ .mailpoet_padded { padding-left: 20px; padding-right: 20px; - word-break: break-word; + /*word-break: break-all;*/ word-wrap: break-word; } @@ -238,7 +238,7 @@ } .mailpoet_social img { - height: 32x !important; + height: 32px !important; width: 32px !important; padding-bottom: 20px !important; } diff --git a/lib/Newsletter/Renderer/TestData.json b/lib/Newsletter/Renderer/TestData.json index 54360dab84..f075bd6ae0 100644 --- a/lib/Newsletter/Renderer/TestData.json +++ b/lib/Newsletter/Renderer/TestData.json @@ -1,5 +1,5 @@ { - "data": { + "content": { "type": "container", "orientation": "vertical", "styles": { @@ -7,1161 +7,1050 @@ "backgroundColor": "transparent" } }, - "blocks": [ - { - "orientation": "horizontal", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "header", - "text": "

Display problems? View it in your browser. If I add a lot of text to test what happens... Well, nothing really (exciting) happens. Things don't break.

", - "styles": { - "block": { - "backgroundColor": "#333333" - }, - "text": { - "fontColor": "#aaaaaa", - "fontFamily": "Arial", - "fontSize": "12px", - "textAlign": "center" - }, - "link": { - "fontColor": "#a86b6b", - "textDecoration": "underline" - } - } - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/600x250.jpg", - "alt": "600x250", - "padded": true, - "width": "600px", - "height": "250px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/1 Column

\n

1/1 Column

\n

1/1 Column

\n

1/1 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/600x250.jpg", - "alt": "600x250", - "padded": false, - "width": "600px", - "height": "250px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "orientation": "horizontal", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/300x125.jpg", - "alt": "300x125", - "padded": true, - "width": "300px", - "height": "125px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/300x125.jpg", - "alt": "300x125", - "padded": false, - "width": "300px", - "height": "125px", - "styles": { - "block": { - "textAlign": "center" - } - } - } - ] - }, - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/300x125.jpg", - "alt": "300x125", - "padded": true, - "width": "300px", - "height": "125px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/300x125.jpg", - "alt": "300x125", - "padded": false, - "width": "300px", - "height": "125px", - "styles": { - "block": { - "textAlign": "center" - } - } - } - ] - } - ] - } - ] - } - ] - }, - { - "orientation": "horizontal", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": true, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": false, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - } - ] - }, - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": true, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": false, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - } - ] - }, - { - "orientation": "vertical", - "type": "container", - "styles": { - "block": { - "backgroundColor": "transparent" - } - }, - "blocks": [ - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": true, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - }, - { - "type": "text", - "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" - }, - { - "type": "divider", - "styles": { - "block": { - "backgroundColor": "transparent", - "padding": "13px", - "borderStyle": "solid", - "borderWidth": "3px", - "borderColor": "#000000" - } - } - }, - { - "type": "spacer", - "styles": { - "block": { - "backgroundColor": "transparent", - "height": "50px" - } - } - }, - { - "type": "button", - "text": "Button", - "url": "http://example.org", - "styles": { - "block": { - "backgroundColor": "#666666", - "borderColor": "#1e3650", - "borderWidth": "1px", - "borderRadius": "20px", - "borderStyle": "solid", - "width": "100px", - "lineHeight": "30px", - "fontColor": "#ffffff", - "fontFamily": "Arial", - "fontSize": "13px", - "textAlign": "center" - } - } - }, - { - "type": "social", - "icons": [ - { - "type": "socialIcon", - "iconType": "custom", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/custom.png", - "height": "32px", - "width": "32px", - "text": "Custom" - }, - { - "type": "socialIcon", - "iconType": "facebook", - "link": "http://www.facebook.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Facebook.png", - "height": "32px", - "width": "32px", - "text": "Facebook" - }, - { - "type": "socialIcon", - "iconType": "twitter", - "link": "http://www.twitter.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Twitter.png", - "height": "32px", - "width": "32px", - "text": "Twitter" - }, - { - "type": "socialIcon", - "iconType": "google-plus", - "link": "http://plus.google.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Google-Plus.png", - "height": "32px", - "width": "32px", - "text": "Google Plus" - }, - { - "type": "socialIcon", - "iconType": "youtube", - "link": "http://www.youtube.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Youtube.png", - "height": "32px", - "width": "32px", - "text": "Youtube" - }, - { - "type": "socialIcon", - "iconType": "website", - "link": "http://example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Website.png", - "height": "32px", - "width": "32px", - "text": "Website" - }, - { - "type": "socialIcon", - "iconType": "email", - "link": "mailto:mail@example.org", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Email.png", - "height": "32px", - "width": "32px", - "text": "Email" - }, - { - "type": "socialIcon", - "iconType": "instagram", - "link": "http://instagram.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Instagram.png", - "height": "32px", - "width": "32px", - "text": "Instagram" - }, - { - "type": "socialIcon", - "iconType": "pinterest", - "link": "http://www.pinterest.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/Pinterest.png", - "height": "32px", - "width": "32px", - "text": "Pinterest" - }, - { - "type": "socialIcon", - "iconType": "linkedin", - "link": "http://www.linkedin.com", - "image": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/social-icons/01-social/LinkedIn.png", - "height": "32px", - "width": "32px", - "text": "LinkedIn" - } - ], - "iconSet": "default" - }, - { - "type": "image", - "link": "http://example.org", - "src": "http://127.0.0.1/wp-content/plugins/mailpoet/assets/img/newsletter_editor/200x83.jpg", - "alt": "200x83", - "padded": false, - "width": "200px", - "height": "83px", - "styles": { - "block": { - "textAlign": "center" - } - } - } - ] - } - ] - }, - { - "type": "footer", - "text": "

You are receiving this email because you opted in on our website. Update your email preferences or unsubscribe

\n

123 Maple Avenue
93102
Oakland, California

", - "styles": { - "block": { - "backgroundColor": "#333333" - }, - "text": { - "fontColor": "#aaaaaa", - "fontFamily": "Arial", - "fontSize": "12px", - "textAlign": "center" - }, - "link": { - "fontColor": "#a86b6b", - "textDecoration": "underline" - } + "blocks": [{ + "type": "container", + "orientation": "horizontal", + "styles": { + "block": { + "backgroundColor": "transparent" } - } - ] + }, + "blocks": [{ + "type": "container", + "orientation": "vertical", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "header", + "text": "

Display problems? View it in your browser. If I add a lot of text to test what happens... Well, nothing really (exciting) happens. Things don't break.

", + "styles": { + "block": { + "backgroundColor": "#333333" + }, + "text": { + "fontColor": "#aaaaaa", + "fontFamily": "Arial", + "fontSize": "12px", + "textAlign": "center" + }, + "link": { + "fontColor": "#a86b6b", + "textDecoration": "underline" + } + } + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/600x250.jpg", + "alt": "600x250", + "padded": true, + "width": "600px", + "height": "250px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/1 Column

\n

1/1 Column

\n

1/1 Column

\n

1/1 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/600x250.jpg", + "alt": "600x250", + "padded": false, + "width": "600px", + "height": "250px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }] + }, { + "orientation": "horizontal", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/300x125.jpg", + "alt": "300x125", + "padded": true, + "width": "300px", + "height": "125px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/300x125.jpg", + "alt": "300x125", + "padded": false, + "width": "300px", + "height": "125px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }, { + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/300x125.jpg", + "alt": "300x125", + "padded": true, + "width": "300px", + "height": "125px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

1/2 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/300x125.jpg", + "alt": "300x125", + "padded": false, + "width": "300px", + "height": "125px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }] + }, { + "orientation": "horizontal", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": true, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": false, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }, { + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": true, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": false, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }, { + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": true, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }, { + "type": "text", + "text": "

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

1/3 Column

\n

Heading (size 2)

\n

Paragraph under heading to test line-height.

\n

Heading (size 3)

\n

Heading (size 3) with link

\n

Heading (size 3)

\n

Paragraph under heading to test line-height.

\n

Bacon ipsum dolor amet short ribs shank cow, ribeye corned beef short loin t-bone kielbasa meatloaf ball tip rump venison boudin brisket beef ribs. Fatback landjaeger frankfurter, meatloaf picanha andouille leberkas. Tail beef ribs boudin salami, kevin cupim landjaeger pork loin tenderloin ham filet mignon drumstick short loin. Biltong frankfurter shank pork belly picanha prosciutto meatloaf tail hamburger landjaeger pancetta shankle pig. Pig tri-tip tenderloin ground round ribeye alcatra turkey salami turducken sausage pork loin kielbasa hamburger meatloaf strip steak. Ribeye boudin cow, beef ribs t-bone pig short ribs tri-tip pork loin rump shank hamburger short loin. Salami pastrami meatball shoulder cupim.

\n

Bacon kevin shank ball tip shoulder. Jowl leberkas fatback, short loin chuck beef beef ribs short ribs ribeye turducken pork chop brisket filet mignon cow. Turkey ball tip rump bacon filet mignon sausage jowl shoulder chicken ground round kielbasa shankle. Drumstick pancetta corned beef kielbasa porchetta jerky swine leberkas kevin boudin chicken shoulder bacon tri-tip venison. Ham hock ball tip beef ribs spare ribs tail pork ground round, biltong doner t-bone pork chop rump hamburger pancetta brisket.

\n

Brisket beef kielbasa jowl hamburger, doner flank. Shoulder ham hock sausage t-bone pork belly chicken picanha pork loin ham bresaola tri-tip ground round kevin. Chicken sirloin shankle fatback boudin t-bone pig tri-tip bresaola doner cow short loin pancetta short ribs andouille. Cupim doner short ribs, andouille cow t-bone ground round pork porchetta beef capicola. Rump drumstick biltong shank kielbasa bacon ball tip pancetta meatloaf shankle fatback.

\n

Kielbasa jowl flank biltong. Pork loin fatback chicken ham prosciutto sausage cow short loin porchetta kielbasa. Bresaola ham hock pancetta, cow ham tenderloin flank turducken fatback beef jowl short loin pig. Picanha turkey spare ribs capicola andouille, tongue short loin sausage corned beef kevin meatball venison kielbasa pastrami. Beef ribs ground round tenderloin flank.

\n

Alcatra flank ground round corned beef tenderloin prosciutto chicken sirloin, venison leberkas turducken shoulder pastrami bresaola. Chicken leberkas t-bone pork loin drumstick flank. T-bone flank venison alcatra andouille brisket short ribs shankle biltong pancetta pork belly bacon. Tri-tip biltong ham hock jowl chicken. Spare ribs beef ribs shankle corned beef short loin picanha prosciutto bacon ham rump tri-tip doner ground round cupim. Meatloaf andouille bresaola strip steak kevin, pork turducken.

\n

Jowl strip steak pork belly jerky short ribs filet mignon. Kielbasa ham shoulder turducken sausage jerky beef ham

\n

Alcatra hamburger jowl shank jerky. 

\n\n
    \n
  1. One
  2. \n
  3. Two
  4. \n
  5. Three
  6. \n
\n

Bacon ipsum dolor amet shoulder turkey meatball pork chop porchetta, filet mignon shankle. Sausage meatloaf flank picanha jowl chuck capicola tri-tip. Meatloaf andouille kielbasa beef ribs. 

\n

— Mr. Bacon

" + }, { + "type": "divider", + "styles": { + "block": { + "backgroundColor": "transparent", + "padding": "13px", + "borderStyle": "solid", + "borderWidth": "3px", + "borderColor": "#000000" + } + } + }, { + "type": "spacer", + "styles": { + "block": { + "backgroundColor": "transparent", + "height": "50px" + } + } + }, { + "type": "button", + "text": "Button", + "url": "http://example.org", + "styles": { + "block": { + "backgroundColor": "#666666", + "borderColor": "#1e3650", + "borderWidth": "1px", + "borderRadius": "20px", + "borderStyle": "solid", + "width": "100px", + "lineHeight": "30px", + "fontColor": "#ffffff", + "fontFamily": "Arial", + "fontSize": "13px", + "textAlign": "center" + } + } + }, { + "type": "social", + "icons": [{ + "type": "socialIcon", + "iconType": "custom", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/custom.png", + "height": "32px", + "width": "32px", + "text": "Custom" + }, { + "type": "socialIcon", + "iconType": "facebook", + "link": "http://www.facebook.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Facebook.png", + "height": "32px", + "width": "32px", + "text": "Facebook" + }, { + "type": "socialIcon", + "iconType": "twitter", + "link": "http://www.twitter.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Twitter.png", + "height": "32px", + "width": "32px", + "text": "Twitter" + }, { + "type": "socialIcon", + "iconType": "google-plus", + "link": "http://plus.google.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Google-Plus.png", + "height": "32px", + "width": "32px", + "text": "Google Plus" + }, { + "type": "socialIcon", + "iconType": "youtube", + "link": "http://www.youtube.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Youtube.png", + "height": "32px", + "width": "32px", + "text": "Youtube" + }, { + "type": "socialIcon", + "iconType": "website", + "link": "http://example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Website.png", + "height": "32px", + "width": "32px", + "text": "Website" + }, { + "type": "socialIcon", + "iconType": "email", + "link": "mailto:mail@example.org", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Email.png", + "height": "32px", + "width": "32px", + "text": "Email" + }, { + "type": "socialIcon", + "iconType": "instagram", + "link": "http://instagram.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Instagram.png", + "height": "32px", + "width": "32px", + "text": "Instagram" + }, { + "type": "socialIcon", + "iconType": "pinterest", + "link": "http://www.pinterest.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/Pinterest.png", + "height": "32px", + "width": "32px", + "text": "Pinterest" + }, { + "type": "socialIcon", + "iconType": "linkedin", + "link": "http://www.linkedin.com", + "image": "http://mp3.mailpoet.net/various/social-icons/01-social/LinkedIn.png", + "height": "32px", + "width": "32px", + "text": "LinkedIn" + }], + "iconSet": "default" + }, { + "type": "image", + "link": "http://example.org", + "src": "http://mp3.mailpoet.net/various/200x83.jpg", + "alt": "200x83", + "padded": false, + "width": "200px", + "height": "83px", + "styles": { + "block": { + "textAlign": "center" + } + } + }] + }] + }, { + "orientation": "horizontal", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "orientation": "vertical", + "type": "container", + "styles": { + "block": { + "backgroundColor": "transparent" + } + }, + "blocks": [{ + "type": "footer", + "text": "

You are receiving this email because you opted in on our website. Update your email preferences or unsubscribe

\n

123 Maple Avenue
93102
Oakland, California

", + "styles": { + "block": { + "backgroundColor": "#333333" + }, + "text": { + "fontColor": "#aaaaaa", + "fontFamily": "Arial", + "fontSize": "12px", + "textAlign": "center" + }, + "link": { + "fontColor": "#a86b6b", + "textDecoration": "underline" + } + } + }] + }] + }] }, - "styles": { + "globalStyles": { "text": { "fontColor": "#565656", "fontFamily": "Arial", @@ -1186,11 +1075,14 @@ "fontColor": "#a86b6b", "textDecoration": "underline" }, - "newsletter": { + "wrapper": { "backgroundColor": "#999999" }, - "background": { + "body": { "backgroundColor": "#333333" } - } -} + }, + "subject": "Click to change the subject!", + "preheader": "", + "id": 3 +} \ No newline at end of file