Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412<html>
 <body>
  <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
   <tr>
    <td class="stylingblock-content-wrapper camarker-inner">
    </td>
   </tr>
  </table>
  <!-- -->
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "//www.w3.org/TR/html4/loose.dtd">
  <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" name="viewport"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <style type="text/css">
   ReadMsgBody {
        width: 100%;
      }
      .ExternalClass {
        width: 100%;
      }
      .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {
        line-height: 100%;
      }
      body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        margin: 0 !important;
      }
      p {
        margin: 1em 0;
      }
      table td {
        border-collapse: collapse;
      }
      img {
        outline: 0;
      }
      a img {
        border: none;
      }
      p {
        margin: 1em 0;
      }
      a[x-apple-data-detectors] {
        color: inherit !important;
        text-decoration: none !important;
        font-size: inherit !important;
        font-family: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
      }
      @-ms-viewport {
        width: device-width;
      }
  </style>
  <style type="text/css">
   @media only screen and (max-width: 480px) {
        .container {
          width: 100% !important;
        }
        .footer {
          width: auto !important;
          margin-left: 0;
        }
        .content-padding {
          padding: 4px !important;
        }
        .mobile-hidden {
          display: none !important;
        }
        .logo {
          display: block !important;
          padding: 0 !important;
        }
        img {
          max-width: 100% !important;
          height: auto !important;
          max-height: auto !important;
        }
        .header img {
          max-width: 100% !important;
          height: auto !important;
          max-height: auto !important;
        }
        .photo img {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
        }
        .drop {
          display: block !important;
          width: 100% !important;
          float: left;
          clear: both;
        }
        .footerlogo {
          display: block !important;
          width: 100% !important;
          padding-top: 15px;
          float: left;
          clear: both;
        }
        .nav4, .nav5, .nav6 {
          display: none !important;
        }
        .tableBlock {
          width: 100% !important;
        }
        .responsive-td {
          width: 100% !important;
          display: block !important;
          padding: 0 !important;
        }
        .fluid, .fluid-centered {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
          margin-left: auto !important;
          margin-right: auto !important;
        }
        .fluid-centered {
          margin-left: auto !important;
          margin-right: auto !important;
        }
        /* MOBILE GLOBAL STYLES - DO NOT CHANGE */
        body {
          padding: 0px !important;
          font-size: 16px !important;
          line-height: 150% !important;
        }
        a {
          line-height: 110% !important;
        }
        h1 {
          font-size: 22px !important;
          line-height: normal !important;
        }
        h2 {
          font-size: 20px !important;
          line-height: normal !important;
        }
        h3 {
          font-size: 18px !important;
          line-height: normal !important;
        }
        .buttonstyles {
          font-family: arial, helvetica, sans-serif !important;
          font-size: 16px !important;
          color: #FFFFFF !important;
          padding: 10px !important;
        }
        /* END OF MOBILE GLOBAL STYLES - DO NOT CHANGE */
      }
      @media only screen and (max-width: 601px) {
        .container {
          width: 100% !important;
        }
        .mobile-hidden {
          display: none !important;
        }
        .logo {
          display: block !important;
          padding: 0 !important;
        }
        .photo img {
          width: 100% !important;
          height: auto !important;
        }
        .nav5, .nav6 {
          display: none !important;
        }
        .fluid, .fluid-centered {
          width: 100% !important;
          max-width: 100% !important;
          height: auto !important;
          margin-left: auto !important;
          margin-right: auto !important;
        }
        .fluid-centered {
          margin-left: auto !important;
          margin-right: auto !important;
        }
        .MobilePadding {
          padding: 12px !important;
        }
      }
  </style>
  <!--[if mso]> <style type="text/css"> /* Begin Outlook Font Fix */ body, table, td { font-family: Arial, Helvetica, sans-serif ; font-size:16px; color:#808080; line-height:1; } /* End Outlook Font Fix */ </style> <![endif]-->
  <style type="text/css">
   div.preheader 
{ display: none !important; }
  </style>
  <div class="preheader" style="font-size: 1px; display: none !important;">
   Plus, access early Black Friday doorbusters now!
  </div>
  <div style="font-size:0; line-height:0;">
   <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fclick.emdeals.michaels.com%252Fopen.aspx%253Fffcb10-fefa1271766d06-fe6a15717567017f751d-fe4115707564057d701172-ff951076-fe6715717567017e7c16-fefd1076756701/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmNsaWNrLmVtZGVhbCJ9:1kXNaU:0_KopspsoTqM-_gFw29qrSsPOzbuo4-jW_PoxVVcWOM" width="1"/>
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%">
   <tr>
    <td align="center" style="padding: 5px; ">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" width="600">
      <tr>
       <td>
        <table bgcolor="#ffffff" cellpadding="0" cellspacing="0" class="tb_properties border_style" width="100%">
         <tr>
          <td align="center" valign="top">
           <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" width="600">
            <tr>
             <td>
              <table border="0" cellpadding="0" cellspacing="0" width="100%">
               <!-- -->
               <tr>
                <td align="right" style="font-family:Helvetica, Arial, sans-serif; text-decoration:underline; font-size:12px; line-height:16px; color:#999999; padding:10px 30px 0 0;">
                 <a style="color:#999999; text-decoration:underline;" target="_blank">
                  View in Browser
                 </a>
                </td>
               </tr>
               <!-- -->
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a target="_blank">
                     <img alt="" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.s10.exacttarget.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Ff74bdb4b-a7fb-46e9-ade5-1b8ef3cd78f8.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLnMxMC5leCJ9:1kXNaU:MaDCAfzMvdDfyVZWL6UxDZwrvKMBu4BKVTg6L-uYgVU" style="display:block;" width="175"/>
                    </a>
                   </td>
                   <td align="center">
                    <a target="_blank">
                     <!-- -->
                     <img alt="Michaels: Make Creativity Happen" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Feb618ae2-9327-4b2a-a828-52137d52fd25.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="250"/>
                     <!-- -->
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.s10.exacttarget.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Ff74bdb4b-a7fb-46e9-ade5-1b8ef3cd78f8.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLnMxMC5leCJ9:1kXNaU:MaDCAfzMvdDfyVZWL6UxDZwrvKMBu4BKVTg6L-uYgVU" style="display:block;" width="175"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center" style="border-bottom: 1px #000000 solid;">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a target="_blank">
                     <img alt="SHOP" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fa6916eda-ad11-4f5c-beb6-d3a4c39ee4a6.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="212"/>
                    </a>
                   </td>
                   <td align="center">
                    <a target="_blank">
                     <img alt="COUPONS" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F25aa1c9b-dd37-4ad7-b1e9-a308feb2321c.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="124"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="WEEKLY AD" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fda0ea0b4-a7fc-47f7-a009-195290101815.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="264"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table border="0" cellpadding="0" cellspacing="0" class="container" width="600">
               <tr>
                <td align="center">
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table border="0" cellpadding="0" cellspacing="0" class="container" width="600">
               <tr>
                <td align="center">
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="7404" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F7%252Fd08b0ba9-d746-4455-afff-8a03690aa445.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Promo Card" data-assetid="151032" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252Fb713af8c-bf0e-41f7-b237-12ac3641b59d.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000; border-right: solid 17px #000000; border-top: solid 17px #000000;">
                       <a data-linkto="other" title="">
                        <img alt="Early Access" data-assetid="150977" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F0154fbf2-f3bc-44e0-b69b-e334e37b1341.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#ffffff" style="border-left: solid 17px #000000;border-right: solid 17px #000000;padding-top:20px;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <!--<tr> <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle"> <a alias="7ftWillow_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7-ft.--pre-lit-willow-pine-tree/7ftwillow?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-7ftWillow_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" target="_blank" title=""><img alt="7 ft. Pre-Lit Willow Pine Tree" data-assetid="150575" src="//image.emdeals.michaels.com/lib/fe4115707564057d701172/m/68/bc9401af-8770-4c48-aed9-9de520895e3e.jpg" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"></a> </td> </tr>-->
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft. Pre-Lit Willow Pine Tree" data-assetid="143201" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F86e49cd5-ee21-410e-a52c-5895b37bad54.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft. Pre-Lit Willow Pine Tree" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft. Pre-Lit Willow Pine Tree" data-assetid="150204" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F6f97b57a-cee6-487a-9734-4a9c373f4d0e.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7 ft. Pre-Lit Willow Pine Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           300 clear or multicolored lights.
                           <br/>
                           792 tips.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:5px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Reg. 229.99 Each
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:5px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Tree: #102 clear; Tree: #103 multi
                           <br/>
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft. Pre-Lit Willow Pine Tree" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="All Canvas" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="All Canvas" data-assetid="104750" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F51%252Fc55cd101-f3f5-4520-910e-7e61437fe01d.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="All Canvas" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="All Canvas" data-assetid="150201" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252Fed1d3ce4-cd70-44b5-82ce-c10e9ee62952.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Back-Stapled &amp; Gallery Wrapped Canvas
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           by Artist's Loft
                           <sup>
                            ®
                           </sup>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:5px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Level 1: Academic.
                           <br/>
                           Level 2: Artist.
                           <br/>
                           Level 3: Professional.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:20px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="All Canvas" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Craft Storage" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Craft Storage" data-assetid="143266" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F838c5394-e6e3-490f-8d41-7baa30df7d2a.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Craft Storage" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Craft Storage" data-assetid="150202" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F12fc7f18-1446-4a48-b003-f901ab6959f4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Craft Storage
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Reg. 2.99 &amp; Up.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:20px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Craft Storage" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Handcrafted Floral" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Handcrafted Floral" data-assetid="143328" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F6f160132-ea68-49bc-bfca-0f5e211adfd3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Handcrafted Floral" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Handcrafted Floral" data-assetid="150202" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F12fc7f18-1446-4a48-b003-f901ab6959f4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Handcrafted Floral Arrangements
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:20px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Handcrafted Floral" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Art Set" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Art Set" data-assetid="143358" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F48f6d6c9-c390-44c4-bbbb-18fc73b4f658.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Art Set" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Art Set" data-assetid="150202" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F12fc7f18-1446-4a48-b003-f901ab6959f4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Kids' Art Sets
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:20px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Art Set" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Gingerbread Kits" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Gingerbread Kits" data-assetid="143245" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252Fb20754e2-5ce1-4eb7-b50a-e5b4632bdcf0.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Gingerbread Kits" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Gingerbread Kits" data-assetid="150203" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252Fed91102f-6cc5-4320-9b85-f9257316cfbe.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Gingerbread Kits
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           by Wilton
                           <sup>
                            ®
                           </sup>
                           <br/>
                           Reg. $10 Each
                           <br/>
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <!--  <tr> <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle"> <a alias="GingerbreadKits_PRD" conversion="false" data-linkto="other" href="" target="_blank" title=""><img alt="Gingerbread Kits" data-assetid="7582" height="40" src="//image.emdeals.michaels.com/lib/fe4115707564057d701172/m/13/747b9190-cf47-401f-8d58-cdcfc5f879ae.png" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"></a> </td> </tr> -->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Gingerbread Kits" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2" data-assetid="140457" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F64%252Fd71bc208-65e4-4416-8a15-ee8ff31b4d8e.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2" data-assetid="150199" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F42d00924-cad7-4c83-b9e3-41c40156703b.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Cricut Explore Air
                           <sup>
                            ™
                           </sup>
                           2
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Cuts over 100 materials, everything from cardstock, vinyl, and iron-on to a range of specialty materials.
                           <br/>
                           More colors available in store &amp; online.
                           <br/>
                           Reg. 249.99 Each
                           <br/>
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Maker" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Maker" data-assetid="143223" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F5b4a9e7a-ea49-4e48-811f-52161641e624.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Maker" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Maker" data-assetid="150200" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F7e6b0ab3-7d12-4925-9c6e-cb29b83a9eb5.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Cricut Maker
                           <sup>
                            ®
                           </sup>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Cuts 300+ materials, from paper and vinyl to leather, balsa wood and more.
                           <br/>
                           Reg. 399.99 Each
                           <br/>
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Maker" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" bgcolor="#000000" style="border-left: solid 17px #000000;border-right: solid 17px #000000;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2 Special Edition Martha Stewart Machine Bundle" data-assetid="154733" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Fe0365255-4a48-4ddc-8ffc-b551eaab1acc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2 Special Edition Martha Stewart Machine Bundle" data-assetid="143218" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F5b27a0b7-a849-4d2c-9257-f742863f7051.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2 Special Edition Martha Stewart Machine Bundle" data-assetid="154660" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F891835fa-beef-4b22-b889-149abaa5ce98.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2 Special Edition Martha Stewart Machine Bundle" data-assetid="150198" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F1db27ece-c13c-497d-a6d1-4d32cf24ebf9.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           9" x 9" Cricut EasyPress
                           <sup>
                            ®
                           </sup>
                           2
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           Reg. 189.99 Each
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;font-size:16px;font-weight: normal;line-height:24px;text-decoration:none; -webkit-text-size-adjust:none;padding-bottom:5px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           No coupons or additional discounts can be applied. While supplies last. No rain checks.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 10px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Cricut Explore Air™ 2 Special Edition Martha Stewart Machine Bundle" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" style="border-left: solid 17px #000000; border-right: solid 17px #000000; border-bottom: solid 17px #000000;" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Shop All BF Deals" data-assetid="150982" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252Fab74eccb-29ae-4faf-8a4a-703e1a3097a0.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Christmas Trees" data-assetid="151820" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F95d9ff86-ea6d-44a3-b01b-58c0eee615e4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" style="border-top: solid 17px #D30E2C;border-left: solid 17px #D30E2C;border-right: solid 17px #D30E2C;border-bottom: solid 17px #D30E2C;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Tree of the Day" data-assetid="47492" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F26%252Fa8fdcfc0-4f1f-47d8-832e-01eea41cde19.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Tree of the Day" data-assetid="26740" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F15%252Fbf82bd24-78b9-400a-8de6-66b80a771b1b.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Tree of the Day" data-assetid="4412" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F4%252F14630cb4-0d70-4b9a-9638-82524ab40a33.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> <a alias="TreeoftheDay_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7.5ft.-prelit-kensington-pine-artificial-christmas-tree-color-changing-led-lights-by-ashland/10434985.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-TreeoftheDay_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top: 0px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7.5 ft. Pre-Lit Kensington Pine Dual LED Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           350 color-changing LED lights. 1,171 tips.
                           <br/>
                           Reg. 329.99 Each
                           <br/>
                           Tree: #135
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:14px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:14px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Tree of the Day" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Pencil Tree" data-assetid="23514" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F2aeb7b6e-2a6b-4908-9448-8a65609a119b.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Pencil Tree" data-assetid="4401" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F4%252Fb90bdbff-33e0-4395-bca8-40d2870d57fc.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; text-align: center; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!--<tr> <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top:10px;"> 
<a alias="7ftPreLitPencilTree_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7ft.-prelit-artificial-christmas-tree-clear-lights-by-ashland/10293311.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-7ftPreLitPencilTree_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top:10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7 ft. Pre-Lit Pencil Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="font-family: arial, helvetica, sans-serif;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">
                           210 clear lights.
                           <br/>
                           397 tips.
                           <br/>
                           Reg. 109.99 Each
                           <br/>
                           Tree: #130 clear
                           <br/>
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;"> 
<a alias="7ftPreLitPencilTree_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7ft.-prelit-artificial-christmas-tree-clear-lights-by-ashland/10293311.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-7ftPreLitPencilTree_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;" target="_blank">Reg. $3 - $15<br> No coupons or additional discounts can be applied. While supplies last. No rain checks.</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Pencil Tree" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Cashmere Pencil Tree" data-assetid="143198" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F7b71fb43-2063-46a7-a4b8-3f8cb5980ba1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Cashmere Pencil Tree" data-assetid="144546" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F66%252F2f3ee378-86c4-4f8f-80fb-df4933146358.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> 
<a alias="7ftPreLitCashmerePencilTree_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7ft-prelit-artificial-christmas-tree-clear-lights-by-ashland/10368145.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-7ftPreLitCashmerePencilTree_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7 ft. Pre-Lit Cashmere Pencil Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           210 clear lights. 350 tips.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Reg. 139.99 Each
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Tree: #132 clear
                           <br/>
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Lit Cashmere Pencil Tree" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Flocked Slim Tree" data-assetid="143203" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252Fb433176c-e047-4c90-8d9d-2445dd378715.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Flocked Slim Tree" data-assetid="4412" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F4%252F14630cb4-0d70-4b9a-9638-82524ab40a33.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> <a alias="7ftPreFlockedSlimTree_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7ft-prelit-artificial-christmas-tree-clear-lights-by-ashland/10521247.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-7ftPreFlockedSlimTree_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7 ft. Pre-Lit Flocked Slim Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           250 clear lights.
              645 tips.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Reg. 199.99 Each
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Tree: #153 clear
                           <br/>
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="7 ft Pre Flocked Slim Tree" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Hartford Pine Tree" data-assetid="143197" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F8f871c7a-2331-4197-b584-ab711da83cf4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Hartford Pine Tree" data-assetid="37745" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F21%252F31842693-82a7-4b03-bd7c-e7f0847325ed.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> 
<a alias="PreLitHartfordPineTree_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7.5-ft.-pre-lit-hartford-pine-tree/75fthartford?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-PreLitHartfordPineTree_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7.5 ft. Pre-Lit Hartford Pine Tree
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           500 clear or multicolored lights. 1,962 tips.
                           <br/>
                           Reg. 329.99 Each
                           <br/>
                           Tree: #104 clear; Tree: #105 multi
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Hartford Pine Tree" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Jasper Cashmere Tree with Quick Set" data-assetid="143192" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F06ba62ea-ef33-4a3e-9149-b4ede2ab8453.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; text-align: center; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Jasper Cashmere Tree with Quick Set" data-assetid="144546" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F4%252Fca565472-d0b8-4544-be35-db013a0d10fe.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!-- <tr> <td align="center" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> <a alias="PreLitJasperCashmereTreewithQuickSet_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/7.5ft-prelit-quick-set-jasper-artificial-christmas-tree-clear-lights-by-ashland/10191054.html?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-PreLitJasperCashmereTreewithQuickSet_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> 
</td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px; padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           7.5 ft. Pre-Lit Jasper Cashmere Tree with Quick Set
                           <sup>
                            ®
                           </sup>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           450 clear lights. 1,166 tips.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px; padding-top: 0px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Reg. 379.99 Each
                           <br/>
                           Tree: #121 clear
                           <br/>
                           No coupons or additional discounts can be applied.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Pre Lit Jasper Cashmere Tree with Quick Set" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="More Great Deals" data-assetid="7321" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F7%252Fc84d03ac-21df-4d33-bfd7-faa30b51b417.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Belmont Frames Shadow Boxes" data-assetid="143259" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252Fd3af482d-02af-44d4-b4a7-77243b3ea86e.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Belmont Frames Shadow Boxes" data-assetid="144546" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252Fccbecea5-aede-4cd6-97bd-0c73a25ce857.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Belmont Frames &amp; Shadow Boxes
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           by Studio Décor
                           <sup>
                            ®
                           </sup>
                           <br/>
                           Offer varies by store.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Belmont Frames Shadow Boxes" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Home Gallery Float Wall Frames" data-assetid="143362" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252F76fd66ab-3f10-4875-abbd-710e77600780.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Home Gallery Float Wall Frames" data-assetid="144546" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252Fccbecea5-aede-4cd6-97bd-0c73a25ce857.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!--<tr> <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> 
<a alias="HomeGalleryFloatWallFrames_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/frames/wall-frames/809188416?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-HomeGalleryFloatWallFrames_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944#prefn1=subBrand&pmpt=qualifying&prefv1=Float|Gallery|Home%20Collection" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Home, Gallery &amp; Float Wall Frames
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           by Studio Décor
                           <sup>
                            ®
                           </sup>
                           <br/>
                           Offer varies by store.
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Home Gallery Float Wall Frames" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Loops And Threads Yarn" data-assetid="143269" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F65%252Fd7db26a6-f014-464d-8376-2395ff695682.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Loops And Threads Yarn" data-assetid="15266" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252Ff695d597-67cc-47f6-850f-b6cfcdc3fb8f.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           ALL
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Loops &amp; Threads Yarn
                          </a>
                         </td>
                        </tr>
                        <!-- <tr>           <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;">             
<a alias="ALLLoopsAndThreadsYarn_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/knitting-and-crochet/yarn/809187839?prefn1=brand&pmpt=qualifying&prefv1=Loops%20and%20Threads&cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-ALLLoopsAndThreadsYarn_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">by Studio D&eacute;cor<sup>&reg; </sup></a>           </td>         </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="ALL Loops And Threads Yarn" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Disney Frozen 2" data-assetid="139278" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F64%252F2685bd59-01f9-421f-ae5d-7a8b38d8602c.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" style="line-height:0px; mso-line-height-rule:exactly;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Disney Frozen 2" data-assetid="3987" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F4%252F9c717b12-4683-4240-bcc4-ef373e0701b8.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="padding: 0px; height: auto; width: 100%; display: block; border: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                        <!--<tr> <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;padding-top: 10px;"> <a alias="DisneyFrozen2_PRD" conversion="false" data-linkto="other" href="//apiservices.krxd.net/click_tracker/track?kxconfid=swc34301e&kxadvertiserid=Michaels&kxcampaignid=20191127_US Promo&clk=https://www.michaels.com/seasonal/disney-frozen-2/20000016?cm_mmc=EMAIL-_-Circ/Promo-_-20191127_US Promo-_-DisneyFrozen2_PRD&customerEmail=QkFFRkI3RDRAVUlGRUVELkNPTQ==&emId=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855&cm_mmca2=124463006944" style="color:#000000;font-family:sans-serif;font-size:34px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">ALL</a> </td> </tr>-->
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:22px;font-weight: bold;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:34px;" target="_blank">
                           Disney
                           <sup>
                            ®
                           </sup>
                           Frozen 2
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:24px;">
                          <a data-linkto="other" style="color:#000000;font-family:sans-serif;font-size:16px;font-weight: normal;text-align:center;text-decoration:none; -webkit-text-size-adjust:none;line-height:22px;" target="_blank">
                           Excludes LEGO
                           <sup>
                            ®
                           </sup>
                           .
                          </a>
                         </td>
                        </tr>
                        <tr>
                         <td align="center" bgcolor="#ffffff" style="padding: 10px 0 20px 0;" valign="middle">
                          <a data-linkto="other" target="_blank" title="">
                           <img alt="Disney Frozen 2" data-assetid="7582" height="40" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F13%252F747b9190-cf47-401f-8d58-cdcfc5f879ae.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: 40px; width: 600px; padding: 0px; text-align: center;" width="600"/>
                          </a>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Christmas" data-assetid="154251" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252Febc0cc7a-5b11-4ea1-b9aa-0cfbb8b3ea64.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- Start of AMPSCRIPT   End of AMPSCRIPT-->
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center" style="padding: 20px 0px 0px;line-height:0px; mso-line-height-rule:exactly;" width="100%">
                       <a data-linkto="other" title="">
                        <img alt="Custom Frame" data-assetid="148088" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe3f15707564057d701174%252Fm%252F1%252F99b2793a-6857-4c1b-8543-0a9dd69ac054.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                       </a>
                      </td>
                     </tr>
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Custom Frame" data-assetid="151657" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252Fd4af9c1c-779b-4528-8258-96ba97202c79.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="height: auto; width: 100%; padding: 0px; display: block; text-align: center;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img border="0" data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; text-align: center; padding: 0px; height: 20px; width: 20px; border: 0px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="Weekly Ad" data-assetid="146418" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F66%252F70af5a7d-133d-46dc-8cf7-d81d3f86f9da.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <img data-assetid="15482" height="20" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F8fa3e9db-7617-4cd9-9745-ee6cb916e008.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: 20px; width: 20px;" width="20"/>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="BOPIS" data-assetid="151010" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F68%252F71980464-e842-4fe3-9da0-6c43e237bb2d.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <!-- -->
                    <!-- /* EML18_coupon_standard_AORPI_40_US | 20180920 | KR | Initial Build */ -->
                    <style type="text/css">
                     @media only screen and (max-width: 601px) {
    .couponDisclaimer {
      font-size: 11px !important;
      line-height: 15px !important;
    }
  }
                    </style>
                    <table border="0" cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td bgcolor="#ffffff" style="padding: 20px;">
                       <table border="0" cellpadding="0" cellspacing="0" width="100%">
                        <tr>
                         <td bgcolor="#d30e2c" style="padding: 6px;">
                          <table border="0" cellpadding="0" cellspacing="0" width="100%">
                           <tr>
                            <td style="border: dashed 3px #FFFFFF;">
                             <table border="0" cellpadding="0" cellspacing="0" width="100%">
                              <tr>
                               <td align="center">
                                <table border="0" cellpadding="0" cellspacing="0">
                                 <tr>
                                  <td align="center" style="font-family: arial, helvetica, sans-serif; font-size:19px; font-weight:bold; line-height:23px; color: #000000; padding: 10px;">
                                   <a data-linkto="other" style="color: #d30e2c;text-decoration:none;padding: 10px; background-color: #ffffff;display: block;" target="_blank">
                                    LAST DAY • IN STORE &amp; ONLINE
                                   </a>
                                  </td>
                                 </tr>
                                </table>
                               </td>
                              </tr>
                              <tr>
                               <td align="center" valign="middle">
                                <a data-linkto="other" style="color:#FFFFFF;text-decoration:none;" target="_blank" title="">
                                 <img alt="40AORPI" data-assetid="8458" height="242" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F8%252F9570b935-8e18-4fa4-9472-358cac8f4c85.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="border: 0px none transparent; padding: 0px; text-align: center; height: 242px; width: 540px;" width="540"/>
                                </a>
                               </td>
                              </tr>
                              <tr>
                               <td align="center" style="font-family:arial, helvetica, sans-serif; font-size:14px; line-height:18px; color:#FFFFFF; padding: 0px;">
                                <a data-linkto="other" style="color:#FFFFFF;text-decoration: none; text-transform: uppercase;" target="_blank">
                                 VALID THRU WED 11/27/19
                                 <br/>
                                 PROMO CODE: 4SAVE112419
                                </a>
                               </td>
                              </tr>
                              <tr style="padding: 18px 0;">
                               <td align="center" style="padding: 20px 0;" valign="middle">
                                <a data-linkto="other" style="color:#FFFFFF;text-decoration:none;" target="_blank" title="">
                                 <img alt="40AORPI" data-assetid="16944" height="60" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F10%252F07d0eaae-ca59-4a24-960d-b47293df18c6.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="border: 0px none transparent; padding: 0px; text-align: center; height: 60px; width: 540px;" width="540"/>
                                </a>
                               </td>
                              </tr>
                              <tr>
                               <td align="center" class="couponDisclaimer" style="font-family:arial, helvetica, sans-serif; font-size:12px; line-height:16px; color:#FFFFFF;padding: 0 4px 10px 4px;">
                                <a data-linkto="other" style="color:#FFFFFF;text-decoration:none;" target="_blank">
                                 Exclusions apply. Excludes doorbusters and clearance. See coupon for details.
                                </a>
                               </td>
                              </tr>
                             </table>
                            </td>
                           </tr>
                          </table>
                         </td>
                        </tr>
                       </table>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                 <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
                  <tr>
                   <td class="stylingblock-content-wrapper camarker-inner">
                    <table cellpadding="0" cellspacing="0" width="100%">
                     <tr>
                      <td align="center">
                       <a data-linkto="other" title="">
                        <img alt="20entirebopis" data-assetid="156107" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F69%252F50ac721f-0287-4330-bbcf-ffdbb28fd071.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="600"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td align="center">
              <table border="0" cellpadding="0" cellspacing="0" class="container" width="600">
               <tr>
                <td align="center">
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td>
              <table border="0" cellpadding="0" cellspacing="0" width="100%">
               <tr>
                <td align="center" style="border-top: 1px #000000 solid;">
                 <img alt="" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4015707564057d701173%252Fm%252F1%252Fe323ae89-6f89-4b47-8f9a-f33897013cd1.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="600"/>
                </td>
               </tr>
               <!-- Begin Social -->
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a target="_blank">
                     <img alt="" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.s10.exacttarget.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F5e6f2faa-a804-47cc-9f24-5650a685aa8d.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLnMxMC5leCJ9:1kXNaU:MaDCAfzMvdDfyVZWL6UxDZwrvKMBu4BKVTg6L-uYgVU" style="display:block;" width="97"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="Facebook" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fec76bab6-4532-44a3-ba36-59aaf08618a2.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="81"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="Twitter" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fd8113cb7-4af4-438f-8e62-1c7d48097027.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="81"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="Pinterest" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Ff8466656-9d0a-48bc-92b8-81cbdc634169.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="81"/>
                    </a>
                   </td>
                   <td align="center">
                    <a target="_blank">
                     <img alt="Instagram" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Ff456c2d6-e727-44f6-bc26-5cb71d6e95ed.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="81"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="YouTube" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F62e9c5b1-e52a-46f7-98eb-c9424cf555da.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="81"/>
                    </a>
                   </td>
                   <td>
                    <img alt="" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.s10.exacttarget.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F5e6f2faa-a804-47cc-9f24-5650a685aa8d.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLnMxMC5leCJ9:1kXNaU:MaDCAfzMvdDfyVZWL6UxDZwrvKMBu4BKVTg6L-uYgVU" style="display:block;" width="97"/>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <!-- End Social -->
               <!-- Begin Footer Categories -->
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a target="_blank">
                     <img alt="SHOP" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F329ba7e6-8d63-4f46-9a48-8ac5814fa320.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="58"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="PROJECTS" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F9f29604e-eed1-4dd9-96ea-423e68be6819.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="84"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="CLASSES" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F11b6599e-e744-40d5-a119-456a596f0445.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="75"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="CUSTOM FRAMING" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fc9e53cba-4881-4bc1-9dac-98b4f1f8fe72.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="134"/>
                    </a>
                   </td>
                   <td align="center">
                    <a target="_blank">
                     <img alt="GIFT CARDS" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252F45b7d32a-5c67-4d56-bc21-795e5cb0ca3f.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="95"/>
                    </a>
                   </td>
                   <td>
                    <a target="_blank">
                     <img alt="MICHAELS REWARDS" border="0" class="photo" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F1%252Fbd1e5363-7546-492f-9828-7a751faf06d4.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display:block;" width="154"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="ART SUPPLIES" data-assetid="69573" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F24670086-9efe-431c-a52c-4b7446275421.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td align="center">
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="BAKING SUPPLIES" data-assetid="69562" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252Fd41aaf48-c285-4908-89b3-250960fafb7f.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="BEADS &amp; JEWELRY" data-assetid="69567" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F48068a4f-b95b-4408-b116-83280365a894.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="CRAFTS &amp; HOBBIES" data-assetid="69559" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F3a90cd2e-1b5c-403d-8ac6-52a21d69974c.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="DÉCOR" data-assetid="69563" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F9155518a-61a1-4285-8708-1f1cdb9ba534.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td align="center">
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="FLORAL" data-assetid="69560" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F7eb18689-f669-49f7-a517-eb921acdd29b.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="FRAMES" data-assetid="69564" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F4bbf503e-2c29-4f5b-be66-487e873f12b3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td align="center">
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="FABRIC SHOP" data-assetid="69561" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F36856ef9-e86c-4f70-9a6b-425538ffa87a.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td align="center">
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="KIDS" data-assetid="69565" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252Fef3dfdf6-5ca6-425c-9152-ee4eb31a9fe6.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="KNITTING &amp; CROCHET" data-assetid="69566" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F0dba5a86-27d3-4e11-85f8-9178856a6940.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="ORGANIZATION &amp; STORAGE" data-assetid="69568" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F77977a8f-a060-4026-b3d6-6dc2d713128f.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="PAPERCRAFT" data-assetid="69569" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F174c9795-ce2a-4564-8cfc-c74b80e6084d.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td align="center">
                 <table border="0" cellpadding="0" cellspacing="0">
                  <tr>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="PARTY SUPPLIES" data-assetid="69570" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F66f6c7fa-98ea-4d6c-90cc-18fa793036e9.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td align="center">
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="SEASONAL" data-assetid="69572" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F0719b709-a210-4866-abad-51ce96dcbd92.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                   <td>
                    <a data-linkto="other" target="_blank" title="">
                     <img alt="WEDDING" data-assetid="69571" src="https://inboxflows.com/_/image/http%253A%252F%252Fimage.emdeals.michaels.com%252Flib%252Ffe4115707564057d701172%252Fm%252F35%252F433a9b02-7171-40a2-90c9-3712c7863ea9.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmltYWdlLmVtZGVhbCJ9:1kXNaU:gbZGpFM4gB8nu97aa-biLbvVUoGNTYFeo-fWJvXQYlo" style="display: block; padding: 0px; text-align: center; height: auto; width: 100%;" width="200"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <!-- END Footer Categories -->
            <!-- -->
            <!-- -->
           </table>
          </td>
         </tr>
         <tr>
          <td align="center" class="MobilePadding" style="padding:20px;">
           <table border="0" cellpadding="0" cellspacing="0" class="container" width="100%">
            <!-- BEGIN From Email Address -->
            <!-- -->
            <tr>
             <td align="left" style="font-family:Helvetica, Arial, sans-serif; text-decoration:none; font-size:12px; line-height:16px; color:#999999;">
              <span style="color:#000000;">
               Don't miss a thing! Add Michaels
               <span style="text-decoration:none; color:#000000;">
                michaels@emdeals.michaels.com
               </span>
               to your address book.
              </span>
              <br/>
              <br/>
             </td>
            </tr>
            <!-- -->
            <!-- END From Email Address -->
            <tr>
             <td>
              <table cellpadding="0" cellspacing="0" class="stylingblock-content-wrapper" style="min-width: 100%; " width="100%">
               <tr>
                <td class="stylingblock-content-wrapper camarker-inner">
                 <table border="0" cellpadding="0" cellspacing="0" width="100%">
                  <tr>
                   <td align="left" style="font-family:Helvetica, Arial, sans-serif; text-decoration:none; font-size:12px; line-height:16px; color:#999999;">
                    <b>
                     *Important Stuff We Have to Tell You
                    </b>
                    <br/>
                    <br/>
                    <b>
                     BUY 2, GET 1 FREE:
                    </b>
                    Buy two items at regular price &amp; get the third of equal or lesser value free. Excludes clearance.
                    <br/>
                    <br/>
                    <b>
                     BUY ONE, GET ONE 50% OFF:
                    </b>
                    Buy one item at regular price &amp; get the second of equal or lesser value 50% off. Excludes clearance.
                    <br/>
                    <br/>
                    <b>
                     †Important Stuff We Have to Tell You About Custom Framing
                     <br/>
                     <br/>
                     CUSTOM FRAME DISCOUNT:
                    </b>
                    Excludes Aaron Brothers Essentials, Custom Frame Value Packages, Custom Frame Express, printing on specialty surfaces, expedited shipping and engraved plates. Must purchase a custom frame. May not be applied to prior purchases or combined with any other coupon, sale or discount. Offers may vary by location. Valid only in U.S. See a Custom Frame Personal Designer for details.
                    <br/>
                    <br/>
                    Offers and pricing listed in this email are valid Wednesday, November 27, 2019, unless otherwise noted. Prices effective in U.S. only. This message contains promotional content. Please do not reply to this email. ©2019 Michaels Stores, Inc. 8000 Bent Branch Drive, Irving, TX 75063.
                    <br/>
                    <br/>
                    Prices may vary in Alaska.
                    <br/>
                    <br/>
                    Some advertised items may not be available at all store locations. Percent off discounts are off original ticketed price. All credit cards may not be accepted at all stores. Selection and regular prices may vary. Typographic and photographic errors are subject to correction at the store level. Products available while quantities last and no rain checks may be issued. We reserve the right to limit quantities.
                    <br/>
                    <br/>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
            </tr>
            <tr>
             <td align="left" style="font-family:Helvetica, Arial, sans-serif; text-decoration:none; font-size:12px; line-height:16px; color:#999999;">
              Click here to receive
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Canada emails in English
              </a>
              or
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Québec emails in French
              </a>
              .
              <br/>
              <br/>
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Find a Store
              </a>
              |
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Contact Us
              </a>
              |
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Privacy Policy
              </a>
              |
              <a style="color:#999999; text-decoration: underline;" target="_blank">
               Unsubscribe
              </a>
              <br/>
              <br/>
              <span style="font-size:10px; line-height:12px;">
               ©2019 Michaels Stores, Inc. Michaels and the Michaels logo and other trademarks and logos used in this email are owned or licensed by Michaels Stores, Inc. All rights reserved.
              </span>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <!-- Insert IS Tracking Pixel -->
  <table border="0" cellpadding="0" cellspacing="0" height="1" width="1">
   <tr>
    <td style="font-size:0px; line-height:0px;">
     <img border="0" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fna5.thunderhead.com%252Fone%252Frt%252Ftrack%252FONE-PFSLHYI824-2685%252Fpixel%253Furi%253Doutbound%253A%252F%252Femailpixel%252F%253Femailaddress%253DBAEFB7D4%2540UIFEED.COM%2526emailid%253D1211424153156/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZuYTUudGh1bmRlciJ9:1kXNaU:x1OI5g_8rfm4fMNIx_ywnR2o-qzXTn-W7mqPoStUjuE" style="display: block" width="1"/>
    </td>
   </tr>
  </table>
  <!-- Insert PI Tracking Pixel -->
  <table border="0" cellpadding="0" cellspacing="0" height="1" width="1">
   <tr>
    <td style="font-size:0px; line-height:0px;">
     <img border="0" height="1px" src="https://inboxflows.com/_/image/https%253A%252F%252Fnova.collect.igodigital.com%252Fc2%252F100010552%252Ftrack_event%253Fpayload%253D%257B%2522user_info%2522%253A%257B%2522email%2522%253A%2522BAEFB7D4%2540UIFEED.COM%2522%257D%257D/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZub3ZhLmNvbGxlYyJ9:1kXNaU:uIiqddau-rqEDYkHzse9LI5I5klG1oW5b7z0OgdnQbs" style="display: block" width="1px"/>
    </td>
   </tr>
  </table>
 </body>
</html>