Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="initial-scale=1.0" name="viewport"/>
  <meta content="telephone=no" name="format-detection"/>
  <title>
   Groupon
  </title>
  <style type="text/css">
   /* Image Center Crop Pattern CSS */ @media only screen and (max-width: 599px) { div[class="pattern-80"] { position: relative !important; overflow: hidden !important; width: 100% !important; height: 80px !important; } div[class="pattern-80"] img { position: absolute !important; top: 0 !important; left: 50% !important; margin-left: -300px !important; } div[class="pattern-105"] { position: relative !important; overflow: hidden !important; width: 100% !important; height: 105px !important; } div[class="pattern-105"] img { position: absolute !important; top: 0 !important; left: 50% !important; margin-left: -300px !important; } div[class="pattern-117"] { position: relative !important; overflow: hidden !important; width: 100% !important; height: 117px !important; } div[class="pattern-117"] img { position: absolute !important; top: 0 !important; left: 50% !important; margin-left: -300px !important; } } @media only screen and (max-width: 480px){ td[class="mobile-padding"]{ padding: 0 0 0 0 !important; } *[class="mobile-padding-font-purchase"]{ padding: 0 0 0 0 !important; font-size: 9px !important; font-weight:normal !important; } *[class="mobile-padding-logo"]{ padding: 0 0 0 0 !important; width: 195px !important; } td[class="header-text"]{ text-align: left !important; } td[class="floatLeft-ship"]{ float: left !important; width: 100% !important; border: 0px none !important; text-align: left !important; padding: 5px 0 15px 0 !important; line-height: 14px !important; font-size: 13px !important; } td[class="floatLeft-name"]{ float: left !important; width: 100% !important; border: 0px none !important; text-align: left !important; padding: 5px 0 5px 0 !important; line-height: 14px !important; font-weight: bold !important; font-size: 13px !important; } *[class="100"]{ width: 100% !important; } table[class="container"]{ width: 100% !important; float: none !important; } td[class="heroPadding"]{ padding: 20px 0 0 0 !important; } td[class="heroPaddingHoliday"]{ padding: 16px 0 0 0 !important; } table[class="outer_container"]{ width: 100% !important; border-spacing: 0 !important; border-collapse: collapse !important; padding: 0 0 0 0 !important; margin-top: 0 !important; margin-bottom: 0 !important; margin-left: auto !important; margin-right: auto !important; } table[class="inner_container"]{ width: 100% !important; min-width: 100% !important; margin-top: 0 !important; margin-bottom: 0 !important; margin-left: auto !important; margin-right: auto !important; border-spacing: 0 !important; border-collapse: collapse !important; padding: 0 0 0 0 !important; } td[class="inner_container"]{ width: 100% !important; margin-top: 0 !important; margin-bottom: 0 !important; margin-left: auto !important; margin-right: auto !important; background-size: 100% !important; } img[class="secondary-100"]{ min-width: 0 !important; width: 100% !important; padding: 0 0 0 0 !important; margin-top: 0 !important; margin-bottom: 0 !important; margin-left: auto !important; margin-right: auto !important; } *[class="nameFont"]{ font-size: 18px !important; line-height: 22px !important; } table[class="heroButton"]{ width: 120px !important; } /* Collection widget price left */ td[class="align-left-widget"]{ width: 100% !important; float: left; text-align: left; padding: 0 8px 3px 13px !important; } *[class].banner_mobile { width: 100% !important; max-height: none !important; height: auto !important; display:block !important; } *[class].mobile-banner { width: 100% !important; max-height: none !important; height: auto !important; display:block !important; } *[class="mobile-banner-img"]{ width: 100%!important; max-height: none!important; height: auto!important; display:block!important; padding: 0 0 0 0!important; color: #000000!important; font-size: 12px!important; } *[class="display-off"]{ display: none !important; } td[class="display-block"]{ display: block !important; } td[class="sm-mobile-font"]{ font-size: 10px !important; } img[class="instagram-logo"]{ width: 22px !important; } img[class="facebook-logo"]{ width: 9.5px !important; } img[class="twitter-logo"]{ width: 27px !important; } td[class="instagram-logo"]{ max-width: 22px !important; padding: 0 40px 0 0 !important; } td[class="facebook-logo"]{ max-width: 9.5px !important; padding: 0 40.5px 0 0 !important; } td[class="twitter-logo"]{ max-width: 27px !important; } .app-store-mobile { width: 113px !important; height: 37px !important; } .google-play-mobile { width: 129px !important; height: 37px !important; } }
  </style>
 </head>
 <body style="margin:0 !important; padding:0 !important;">
  <div style="display:none; white-space:nowrap; font:15px courier; line-height:0;">
  </div>
  <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fwww.groupon.com%252Fanalytic%252Ftrack.gif%253Fp%253D1%2526utm_domain%253Duifeed.com%2526utm_campaign%253D11f2f5fc-5a08-4faf-9f3f-ba62121309de_0_20190419%2526deals%253Ded2b6d9c-5a11-11e8-83c3-00259069d7cc%252C8f1705e4-67d3-11e7-88be-00259060b5da%252C4822fcd8-fcc4-11e8-86f5-52540562940f%252C8bdd3efb-b2cc-4528-84fa-81244671ca5a%252Cd2cd5998-c222-11e6-b498-00259069d868%252Ca1009316-5df9-11e8-bb42-002590604002%252Cdf90032d-c590-460c-a52e-e389ba80dd6a%252C0bacca10-06a0-11e8-bafd-002590604002%252Cc6598759-1129-4af7-ba1f-6d1f8f22f03c%252Cfd193f24-fd02-11e8-aa0c-5254801ee647%252Ce3e00d58-1904-11e9-8337-525418bab388%252Cf3ea5df4-6bd9-11e7-9914-002590604002%252C8c79fb3c-b20c-11e8-893a-5254801ee647%252Ca42cdfa2-edbb-11e8-937c-52540562940f%252C5631d8da-24d7-4025-877c-974a50fcce45%252C7cb8f4cc-81a4-11e6-8feb-00259060b5da%252C812da0c6-8ec8-4144-9140-1ea1c599b8c0%252C457877ec-f60a-478c-a492-667c25742d18%252C1c5079be-378a-11e8-a480-00259069d868%252C9fed37a2-fd01-11e8-968a-00259060b5da%252C18abd39e-10c6-11e7-b326-00259069d7cc%252C1c50fdf2-35a7-11e7-8a34-00259069d7cc%252C3e98b03a-8999-412a-974a-791389cbf299%2526utm_source%253Dchannel_goods_im%2526utm_medium%253Demail%2526t_division%253Dnorth-jersey%2526date%253D20190419%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229%2526CID%253DUS%2526tx%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5ncm91cG9uLiJ9:1kXObh:gQcXzqMcH2kn0K_ApMzynEm5dzLYbTjgm-5puF-EadA" style="display: none !important;" width="1"/>
  <img height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fstags.bluekai.com%252Fsite%252F28445%253Flimit%253D1%2526phint%253Dconsumer_id%253D014ed3b0-5b73-11e8-930c-5254bd560229%2526phint%253Dsource%253Demail/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzdGFncy5ibHVlayJ9:1kXObh:ecrjDsUtME0iKu-0KGCaizAqzLEnvKAmanTTBx2bNXQ" style="display: none !important;" width="1"/>
  <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%; background:#ececec; font-size:13px; line-height:18px;">
   <tr>
    <td align="center">
     <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width:700px; min-width:600px; background: #ffffff;" width="700">
      <tr>
       <td align="center" style="padding:0 10px 0 10px;">
        <span height="0" style="color: #ffffff; font-size: 0px !important;">
         <span class="previewCopy" height="0" style="color: #ffffff; font-size: 0px !important; height: 0px; display: none;">
         </span>
        </span>
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px;" width="600">
         <tr>
          <td style="padding: 10px 0 10px 0;">
           <table align="left" cellpadding="0" cellspacing="0" class="container" style="width: 257px;" width="257">
            <tr>
             <td align="left" class="mobile-padding-logo" style="width: 257px;">
              <a style="font-size: 24px !important; line-height: 28px !important; color:#000000 !important; text-decoration: none; font-weight: 100; font-weight: 700;" target="_blank">
               <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fprom_night%252Fglobal_images%252Fpn-groupon-logo-green.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" style="display: block; border: none; width: 100%;"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
          <td align="right" style="padding-left:10px;" valign="middle">
           <table align="right" cellpadding="0" cellspacing="0" style="width: 100px;" width="100">
            <tr>
             <td align="right" class="mobile-padding" style="vertical-align: middle;" valign="middle">
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fmindstorm%252Fsocial%252Ficon-facebook-white.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" style="display: block; border: none; display: inline-block; width: 25px;"/>
              </a>
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fmindstorm%252Fsocial%252Ficon-twitter-white.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" style="display: block; border: none; display: inline-block; width: 25px;"/>
              </a>
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fmindstorm%252Fsocial%252Ficon-pinterest-white.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" style="display: block; border: none; display: inline-block; width: 25px;"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
         <tr>
          <td colspan="2" style="border-top: 1px solid #cccccc;">
           <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%;">
            <tr>
             <td style="padding: 10px 0 0 0;">
              <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%;">
               <tr>
                <td align="left" class="floatLeft-name" colspan="2" style="width: 40%; font-size: 14px; color: #6d6d6d; font-weight: 500;">
                 For You | April 19, 2019
                </td>
                <td align="right" class="floatLeft-ship" colspan="2" style="width: 60%; font-weight: 100; font-size: 14px; color: #313131;">
                 <span style="font-weight: 300; color: #53A318;">
                  FREE Shipping
                 </span>
                 with $34.99 Purchase
                 <span style="font-weight: 500; color:#53A318;">
                  | FREE Returns
                 </span>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <table align="center" cellpadding="0" cellspacing="0" class="outer_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%;">
         <tr>
          <td align="center" class="heroPadding" style="padding:10px 0 0 0;">
           <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px;">
            <tr>
             <td colspan="2" style="padding: 10px 0 0 0;">
              <a style="display: block; border: none;" target="_blank">
              </a>
              <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px;">
               <tr>
                <td align="center" style="width: 100%; border-top: 1px solid #f2f2f2; border-left: 1px solid #f2f2f2; border-right: 1px solid #f2f2f2;">
                 <img class="100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FKjCnkzurGAnCQyfrFXprveeKvFU%252FKj-1100x660%252Fv1%252Fc600x320.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none;"/>
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td align="left" style="background: #ffffff; padding: 15px 5px 15px 15px;">
              <a style="font-size: 16px !important; line-height: 20px !important; color:#000000 !important; text-decoration: none; color: #ffffff;" target="_blank">
              </a>
              <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%; background: #ffffff;">
               <tr>
                <td align="left" class="nameFont" style="font-size: 18px; line-height: 22px; text-decoration: none; color:#333333;">
                 Verdi 7-pc Spinner Luggage Set
                </td>
               </tr>
               <tr>
                <td>
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%;">
                  <tr>
                   <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; font-weight: 100; color: #939393 !important; text-decoration: none;">
                    <font color="#ff2552">
                     Over 1,000 Bought
                    </font>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="left" style="padding: 3px 0 0 0; background: #ffffff;">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100;">
                  <tr>
                   <td align="left" class="nameFont" style="padding-right: 5px; padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                    $720
                   </td>
                   <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                    $112.97
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="left" class="nameFont" style="font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                 Extra $47.02 Off Ends 4/23
                </td>
               </tr>
              </table>
             </td>
             <td align="right" style="padding: 15px 15px 15px 0; background: #ffffff;" valign="middle">
              <a style="font-size: 18px !important; line-height: 22px !important; color: #000000 !important; text-decoration: none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="heroButton" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:180px; background: #ffffff;" valign="bottom">
               <tr>
                <td background="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fglobal_buttons%252Fpn-gradient-green.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" background-repeat="repeat-x" bgcolor="#82B548" height="45" style="height: 45px; text-align: center;">
                 <a style="padding: 10px 0 10px 0; color:#ffffff; font-size:16px; font-weight: 500; text-decoration:none;">
                  VIEW DEAL
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
           <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%; background: #fffffff;">
            <tr>
             <td align="center">
              <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px;">
               <tr>
                <td align="center" class="banner_mobile" style="padding-top:10px; display:none; font-size:0; max-height:0; line-height:0; mso-hide: all;">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                  <img alt="Clearance" border="0" class="banner_mobile" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FThhottwJLt4WomjwTPstQ8ATnH5%252FTh-460x120/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="padding:0px; display:none; font-size:0; max-height:0; line-height:0; mso-hide: all;" title="Clearance"/>
                 </a>
                </td>
               </tr>
              </table>
              <table align="center" cellpadding="0" cellspacing="0" class="display-off" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width: 600px;">
               <tr>
                <td align="center" style="padding-top: 3.5%;">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                  <img alt="Clearance" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3SzbVQwVs36a1DQQpujU7iiWDico%252F3S-600x100/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; font-size:12px; width: 100%; border-bottom: 1px solid #cccccc;" title="https://www.groupon.com/occasion/goods-clearance?"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
           <table style="width: 10px; background: #ffffff;">
           </table>
           <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px; background: #FFFFFF">
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Moscow Mule Stainless Steel Mugs with Gift Box (2- or 4-Pack)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2LY2seL3kra4jteQgm9noEgfRHgu%252F2L-1000x600%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Moscow Mule Stainless Steel Mugs
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 5,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $26.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $21.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="London Fog Men's Canvas Chukka Boots" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F4FPJW8yxazqWCbhYiR3rb9UQeFHJ%252F4F-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       London Fog Men's Chukka Boots
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 450 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $59.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $26.99
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="JSport by Jambu Nora Women's Weather Boots" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F39GorBsftftbR4Q5XDkMzX2GF65A%252F39-1500x900%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       JSport by Jambu Women's Boots
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 600 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $89
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $17.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Halo Stud Earrings with Swarovski Elements" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FPqtMWi4mfurjsVxjxkwAvjGCco1%252FPq-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Halo Stud Earrings
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 25,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $46.80
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $12.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Bottoms Out Men's Sweater Fleece Pajama Pants (2-Pack)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F4Dxcj9UjUAFkvZkAFPBhDuwgWEFK%252F4D-1400x840%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Men's Fleece Pajama Pants 2-Pack
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $96
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $6.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="JVINI Women's Skinny Pull-On Denim Jeggings (3-Pack)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3DAPc4pGYqxPkfLXYw8gqQUEPpRQ%252F3D-980x588%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       3 Pack Denim Jeggings
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 5,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $89.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $34.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Lily Bloom Expandable Spinner Luggage Set (4-Piece)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3Zx2VmbpKTxuQHZ3srjRrELP1WTE%252F3Z-1016x614%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Lily Bloom Luggage Set
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 300 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $840
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $132.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Clearance: Kathy Ireland Sherpa Comforter Set (3-Piece)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2TbcfwhjSFnvMUqt6SUhh1ouN5Dj%252F2T-1667x1000%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Sherpa Comforter Set (3-Pc.)
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $149.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $34.97
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Unlisted by Kenneth Cole Men's City Dress Shoes" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2CRZZbXZs35MypLrK8DBrgZS5AVE%252F2C-960x582%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Unlisted Men's City Dress Shoes
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 600 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $85
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $37.99
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Joseph Abboud Lucca Men's Chukka Boots" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3iXRxxuQVPAoDgZC84MTWz3Z6c2Y%252F3i-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Joseph Abboud Lucca Chukka Boots
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 600 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $150
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $29.99
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Trillion-Cut Shimmery Pink Opal Engagement Ring by Peermont " class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2Gk9fRq7WiekE6DApzR2HB8Ydqji%252F2G-960x576%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Pink Opal Engagement Ring
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $27.19
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $11.97
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Izod Men's Flat-Knit Patterned Ankle Socks (10-Pair)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F5moZujJxPEtxjL6SbFxjygGDFTj%252F5m-1400x840%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Izod Men's Flat-Knit Socks
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $20
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $14.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Jambu Melon Mary Jane Shoes Women's Collection in Medium Widths" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2eF7Ej45nHntsPEZtgabRAxSfrEZ%252F2e-2048x1228%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Jambu Women's Mary Jane Shoes
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 450 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $79
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $49.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="American Tourister Expandable Hardside Spinner Luggage Set (3-Piece)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FLSJtKQ4pJAfdSh4rwYL47mRR6dd%252FLS-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       American Tourister Luggage 3-Pc.
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $660
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $136.97
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Mikasa 18/10 Stainless Steel Flatware Sets (65-Pieces) " class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FHU5gpTbtHjTh8ECJP9RM9z37uFg%252FHU-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       65-Piece Mikasa Flatware Sets
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 600 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $300
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $79.97
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Wire-Free Seamless Sports Bra with Convertible Straps (6-Pack) (S/M)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fitem_master%252F38Gb7qPt2YVCiLd5466x415PckY2%252F38-1400x840%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Seamless Sports Bra (6-Pack)
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 850 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $120
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $21.97
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Cookie Mug (10 Oz.)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fstores%252F3Hhbx5jK9CfbAYttorddanGMZVJb%252Fstorespi1962719-1000x600%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Cookie Mug (10 Oz.)
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 5,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $19.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $11.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Clearance Women's My Favorite Travel Vacation Scarf Collection" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FHKdtW5Vj6EJBZwWt1GXLzvgCHE7%252FHK-1400x840%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Women's Scarf Collection
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $24
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $3.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Unlisted by Kenneth Cole Men's Cheer Lace Oxford Shoes" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F434U1rm7n3aUyb7S1gyCuJZVZNYw%252F43-960x576%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Kenneth Cole Men's Oxford Shoes
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 600 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $85
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $37.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Reusable Dry Erase Pockets (25-Pack)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2Pch4dNZbBKmoDDN4V5KtgqYnx5y%252F2P-2048x1229%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Reusable Dry Erase Pockets
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 25,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $52.88
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $19.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
            <tr>
             <td align="left" class="inner_container" style="width: 600px;" valign="top" width="100%">
              <!--[if (gte mso 9)|(IE)]> <table width="600" align="center" cellpadding="0" cellspacing="0" border="0"> <tr> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="left" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Crystal Elephant Jewelry Set in 18K Gold Plating by Barzel" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F4DpX71pHvUogdDbxz6h1%252FSE-960x576%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Crystal Elephant Jewelry Set
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 5,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $49.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; color:#53A318 !important; font-weight: 300; text-decoration: none; color: #88b74f;" valign="top">
                        $11.99
                       </span>
                      </td>
                      <td align="right" class="nameFont" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> <td> <![endif]-->
              <a style="text-decoration:none;" target="_blank">
              </a>
              <table align="right" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #ffffff; width:290px;" valign="top">
               <tr>
                <td align="center" style="width:290px;" valign="top">
                 <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                  <tr>
                   <td align="center" class="inner_container" style="width:290px;" valign="top" width="290">
                    <a style="display: block; border: none;" target="_blank">
                     <img alt="Closeout: Momento Air Fryer (2.5 Liter)" class="secondary-100" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252Fj7tiK1v5zzsDzTgAzqdQ7fJef9K%252Fj7-1800x1080%252Fv1%252Ft300x182.jpgc300x182.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1kXObh:JNrFv3qWIe1kpmSmOMF_tz92Zpl81D4Kr0ExZtAWPHQ" style="display: block; border: none; width: 290px;" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding:16px;">
                    <table cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; background: #f2f2f2; width:100%;">
                     <tr>
                      <td align="left" class="nameFont" colspan="2" style="font-size: 14px !important; line-height: 18px !important; color:#000000 !important; text-decoration: none; color: #333333 !important; width:100%;" valign="top">
                       Momento 2.5-Liter Air Fryer
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" valign="top">
                       <font color="#ff2552">
                        Over 1,000 Bought
                       </font>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" width="70%">
                       <span class="nameFont" style="padding-right: 5px; font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; text-decoration: line-through; color:#848484 !important; font-weight: 100;" valign="top">
                        $99.99
                       </span>
                       <span align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 16px !important; line-height: 20px !important; font-weight: 300; text-decoration: none; color: #ff2552;" valign="top">
                        $47.97
                       </span>
                      </td>
                     </tr>
                     <tr>
                      <td align="left" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px; color: #ff2552; text-decoration: none; font-weight: 500 !important;" valign="top">
                       Sale Ends 4/23
                      </td>
                      <td align="right" class="nameFont" style="font-family: Helvetica, Arial, sans-serif; font-size: 13px !important; line-height: 17px !important; font-weight: normal; font-weight: 600; color: #0185c6 !important; text-decoration: none; text-align:right; white-space: nowrap;" valign="top" width="30%">
                       <a style="text-decoration:none;" target="_blank">
                        <font color="#0185c6">
                         View Deal
                        </font>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                  <tr>
                   <td style="width: 10px; background: #ffffff;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </td> <![endif]-->
              <!--[if (gte mso 9)|(IE)]> </tr> </table> <![endif]-->
             </td>
            </tr>
           </table>
           <table align="center" cellpadding="0" cellspacing="0" class="inner_container" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 600px;">
            <tr>
             <td align="center" style="padding: 30px;">
              <table align="center" cellpadding="0" cellspacing="0" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:200px;">
               <tr>
                <td background="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Fprom_night%252Fglobal_buttons%252Fpn-btn-gradient-blue.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1kXObh:jY_d-QV2hKdjnrifjqlc87WZVLoQo_6p8l0bZSYfI1A" background-repeat="repeat-x" bgcolor="#3ebddc" height="45" style="height:45px; text-align:center;">
                 <a style="padding: 10px 0 10px 0; color:#ffffff; font-size:16px; font-weight: 500; text-decoration:none;">
                  VIEW ALL GOODS
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: Helvetica, Arial, sans-serif; color:#000000; font-weight: 100; width: 100%; padding-top: 10px;">
         <tr>
          <td align="center">
           <table cellpadding="0" cellspacing="0" class="container" style="width:600px;" width="600">
            <tr>
             <td class="mobile-container-padding" style="padding:10px 0 10px 0;">
              <table align="left" cellpadding="0" cellspacing="0" class="container" style="width:288px;" width="288">
               <tr>
                <td align="center" colspan="2" style="padding: 20px 0 0 0;">
                 <a rel="nofollow">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682271%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: auto; max-width: 288px !important;" width="288"/>
                 </a>
                </td>
               </tr>
               <tr>
                <td align="left">
                 <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682272%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
                <td align="right">
                 <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682274%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
               </tr>
              </table>
              <table align="right" cellpadding="0" cellspacing="0" class="container" style="width:288px;" width="288">
               <tr>
                <td align="center" colspan="2" style="padding: 20px 0 0 0;">
                 <a rel="nofollow">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682275%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: auto; max-width: 288px !important;" width="288"/>
                 </a>
                </td>
               </tr>
               <tr>
                <td align="left">
                 <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682276%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
                <td align="right">
                 <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D682278%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
           <table align="center" cellpadding="0" cellspacing="0" class="container" style="width:600px;" width="600">
            <tr>
             <td align="center" style="padding:10px 0 10px 0;">
              <table align="center" cellpadding="0" cellspacing="0" style="margin-left:auto; margin-right:auto; width:100%;" width="100%">
               <tr>
                <td colspan="2">
                 <a rel="nofollow">
                  <img border="0" class="100" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D672361%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="display: block; width: auto; height:auto; max-width: 600px !important;" width="600"/>
                 </a>
                </td>
               </tr>
               <tr>
                <td align="left">
                 <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D672362%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
                <td align="right">
                 <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
                  <img border="0" src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D672364%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" border="0" cellpadding="0" cellspacing="0" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; margin: 0 auto; font-weight: normal;">
      <tr>
       <td align="center" style="padding:28px 22px 24px 22px;">
       </td>
      </tr>
     </table>
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:700px; margin: 0 auto; font-weight: normal;">
      <tr>
       <td align="center" class="universal-padding" style="padding:28px 22px 24px 22px; background:#ececec;">
        <table align="center" border="0" cellpadding="0" cellspacing="0" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:100%;">
         <tr>
          <td align="center" style="border-bottom: 1px solid #d5d8db; padding: 0 0 28px 0;" valign="middle">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:100%;" width="100%">
            <tr>
             <td align="center" style="padding: 0 0 8px 0;">
              <img src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Fget_the_free_groupon_3x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; width:215px;" width="215"/>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table align="center" border="0" cellpadding="0" cellspacing="0" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:202px;" width="202">
               <tr>
                <td align="left" class="app-store-mobile" height="30" style="width:92px; height: 30px; padding: 0 4px 0 0;" valign="top" width="92">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank" title="Groupon App">
                  <img class="app-store-mobile" height="30" src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Fapp_store_icon_3x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; width:92px; height: 30px;" width="92"/>
                 </a>
                </td>
                <td align="right" class="google-play-mobile" height="30" style="width:104px; height: 30px; padding: 0 0 0 4px;" valign="top" width="104">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank" title="Groupon App">
                  <img class="google-play-mobile" height="30" src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Fgoogle_play_icon_3x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; width:104px; height: 30px;" width="104"/>
                 </a>
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
         <tr>
          <td style="padding:28px 0 0 0;" valign="middle">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:100%;" width="100%">
            <tr>
             <td align="center" style="font-family:Helvetica, Arial, sans-serif; font-size:13px; line-height: 16px; font-weight:normal; color:#333333; text-align:center;">
              <a style="color:#0185C6; text-decoration:none; color:#333333;" target="_blank" title="Groupon Merchant">
               Groupon Merchant
              </a>
              |
              <a style="color:#0185C6; text-decoration:none; color:#333333;" target="_blank" title="FAQ">
               FAQ
              </a>
              |
              <a style="color:#0185C6; text-decoration:none; color:#333333;" target="_blank" title="GiftCards">
               Gift Cards
              </a>
              |
              <a style="color:#0185C6; text-decoration:none; color:#333333; white-space:nowrap;" target="_blank" title="ContactUs">
               Contact
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
         <tr>
          <td align="center" class="font-10" style="line-height:18px; color:#75787b; padding:18px 0 0 0; font-size:11px; font-family:Helvetica, Arial, sans-serif;" width="100%">
           You are receiving this email because
           <a style="text-decoration:none; color:#75787b;">
            fe5cf315@uifeed.com
           </a>
           is signed up to receive Groupon communications.
           <span class="display-off">
            <br/>
           </span>
           To adjust how often you receive future Groupon Goods emails, including unsubscribing,
           <a style="color:#4990e2; text-decoration:none;" target="_blank" title="Manage Your Subscriptions">
            click here
           </a>
           .
           <span class="display-off">
            <br/>
           </span>
           Delivered by
           <a style="color:#4990e2; text-decoration:none;" target="_blank">
            Groupon
           </a>
           <a style="color:#75787b; text-decoration:none;">
            600 W. Chicago Avenue, Suite 400, Chicago, IL 60654, USA
           </a>
          </td>
         </tr>
         <tr>
          <td align="center" style="padding:18px 0 0 0;">
           <table align="center" border="0" cellpadding="0" cellspacing="0" style="font-family: Arial, Helvetica, sans-serif; font-size:14px !important; line-height:19px !important; color:#333; width:140px; max-width:140px;" width="140">
            <tr>
             <td align="right" class="instagram-logo" style="white-space:nowrap; width:33%; max-width:16px;" valign="middle" width="33%">
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img alt="Instagram" class="instagram-logo" src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Funiversal_footer%252Finstagram_button_32x32.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; display:inline-block; width:16px;" width="16"/>
              </a>
             </td>
             <td align="center" class="facebook-logo" style="white-space:nowrap; width:33%; max-width:7px; padding:0 24px 0 24px;" valign="middle" width="33%">
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img alt="Facebook" class="facebook-logo" src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Funiversal_footer%252Ffacebook_button_14x30.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; display:inline-block; width:7px;" width="7"/>
              </a>
             </td>
             <td align="left" class="twitter-logo" style="white-space:nowrap; width:33%; max-width:20px;" valign="middle" width="33%">
              <a style="color:#0185C6; text-decoration:none;" target="_blank">
               <img alt="Twitter" class="twitter-logo" src="https://inboxflows.com/_/image/http%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Funiversal_footer%252Ftwitter_button_42x28.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnMzLmdyb3Vwb25jZCJ9:1kXObh:vivuK-wcJsensLlBMk0TEj6AqSxKUq2hLh4V2YxLtq4" style="display: block; border: none; display:inline-block; width:20px;" width="20"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table height="1" width="100%">
      <tr>
       <td>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482500%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482501%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482502%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482503%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482504%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482505%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482506%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482507%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482508%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482509%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482510%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482511%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482512%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482513%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482514%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482515%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482516%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482517%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482518%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
        <img src="https://inboxflows.com/_/image/http%253A%252F%252Fli.groupon.com%252Fimp%253Fs%253D125482519%2526li%253Dchannel_goods_im%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2019-04-19T21%253A03%253A55Z/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmxpLmdyb3Vwb24uYyJ9:1kXObh:c0l5axiDOwwb5t1N-_LBGtySsav4pZgdcWI-ndV5Hnc" style="width: 1px; height: 1px; border: none; display: inline;"/>
       </td>
      </tr>
     </table>
     <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fwww.groupon.com%252Fanalytic%252Ftrack.gif%253Fp%253D2%2526utm_domain%253Duifeed.com%2526utm_campaign%253D11f2f5fc-5a08-4faf-9f3f-ba62121309de_0_20190419%2526deals%253Ded2b6d9c-5a11-11e8-83c3-00259069d7cc%252C8f1705e4-67d3-11e7-88be-00259060b5da%252C4822fcd8-fcc4-11e8-86f5-52540562940f%252C8bdd3efb-b2cc-4528-84fa-81244671ca5a%252Cd2cd5998-c222-11e6-b498-00259069d868%252Ca1009316-5df9-11e8-bb42-002590604002%252Cdf90032d-c590-460c-a52e-e389ba80dd6a%252C0bacca10-06a0-11e8-bafd-002590604002%252Cc6598759-1129-4af7-ba1f-6d1f8f22f03c%252Cfd193f24-fd02-11e8-aa0c-5254801ee647%252Ce3e00d58-1904-11e9-8337-525418bab388%252Cf3ea5df4-6bd9-11e7-9914-002590604002%252C8c79fb3c-b20c-11e8-893a-5254801ee647%252Ca42cdfa2-edbb-11e8-937c-52540562940f%252C5631d8da-24d7-4025-877c-974a50fcce45%252C7cb8f4cc-81a4-11e6-8feb-00259060b5da%252C812da0c6-8ec8-4144-9140-1ea1c599b8c0%252C457877ec-f60a-478c-a492-667c25742d18%252C1c5079be-378a-11e8-a480-00259069d868%252C9fed37a2-fd01-11e8-968a-00259060b5da%252C18abd39e-10c6-11e7-b326-00259069d7cc%252C1c50fdf2-35a7-11e7-8a34-00259069d7cc%252C3e98b03a-8999-412a-974a-791389cbf299%2526utm_source%253Dchannel_goods_im%2526utm_medium%253Demail%2526t_division%253Dnorth-jersey%2526date%253D20190419%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229%2526CID%253DUS%2526tx%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5ncm91cG9uLiJ9:1kXObh:gQcXzqMcH2kn0K_ApMzynEm5dzLYbTjgm-5puF-EadA" style="display: none !important;" width="1"/>
    </td>
   </tr>
  </table>
 </body>
</html>