Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <!--[if gte mso 9]><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml><![endif]-->
  <title>
   Macy's
  </title>
  <link href="https://www.macys.com/favicon.ico" rel="shortcut icon" type="image/x-icon"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="telephone=no" name="format-detection"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="light, dark" name="color-scheme"/>
  <style>
   * {box-sizing: border-box;}
 body {margin: 0 auto !important; padding: 0 !important; width: 100% !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
 table {border-collapse: collapse; mso-table-lspace: 0px; mso-table-rspace: 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif;}
 td, a, span, div {border-collapse: collapse; mso-line-height-rule: exactly;}
 h1, h2, h3, h4, h5, h6, p {padding: 0; margin: 0; font-weight: 700; color: #000000;}
 p {font-size: 18px; line-height: 26px; font-weight: 400;}
 h4 {font-size: 36px; line-height: 40px;}
 h6 {font-size: 24px; line-height: 28px;}
 a {color: inherit; text-decoration: none;}
 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;}
 img {border: 0 !important; outline: none !important;}
 /*Color inversion "white text fix" for gmail light & dark clients*/
 u+.body .gmail-screen {background: #000;mix-blend-mode: screen;} 
 u+.body .gmail-difference {background: #000;mix-blend-mode: difference;}
 /*Double Color inversion "black text fix" for gmail dark clients*/
 u+.body .gmail-blend-difference {background: #ffffff;mix-blend-mode: difference;}
 /*New Outlook macOS/iOS black text fix */
 #converted-body .dm-black-ol { color: #00000F !important;}
 /*Desktop Outlook.com / android / iOS black text fix */
 [data-ogsc] .dm-black-ol { color: #00000F !important; mix-blend-mode: difference;}
 /*New Outlook macOS/iOS white text fix */
 #converted-body .dm-white-ol {color: #fffffe !important;}
 /*Desktop Outlook.com / android / iOS white text fix */
 [data-ogsc] .dm-white-ol { color: #fffffe !important; mix-blend-mode: difference;}
  </style>
  <style>
   @media screen and (max-width: 480px) {
 p {font-size: 14px !important; line-height: 20px !important;}
 h4 {font-size: 24px; line-height: 28px;}
 h6 {font-size: 18px; line-height: 24px;}
 .hide {display: none !important;}
 .block {display: block !important;}
 .inline_block {display: inline-block !important;}
 .center {margin-left: auto !important; margin-right: auto !important; text-align: center !important; float: none !important;}
 .em_img {width: 100% !important; height: auto !important;}
 .cta_01 {font-size: 16px !important; line-height: 18px !important;}
 .cta_02 {font-size: 14px !important; line-height: 32px !important; padding: unset !important;}
 .cta_new {padding: 8px 16px !important; font-size: 14px !important; font-weight: 500 !important;}
 .header_nav {display: inline-flex !important; justify-content: space-between !important; margin: 0 auto;}
 .em_br414 {display: block !important; padding: 0 0 5px 0 !important;}
 .imghide414 {max-height: none !important; font-size: 12px !important; display: block !important;}
 .fs12 {font-size: 12px !important;}
 .fs13 {font-size: 13px !important;}
 .fs14 {font-size: 14px !important;}
 .fs15 {font-size: 15px !important;}
 .fs16 {font-size: 16px !important;}
 .fs18 {font-size: 18px !important;}
 .fs20 {font-size: 20px !important;}
 .fs24 {font-size: 24px !important;}
 .fs30 {font-size: 30px !important;}
 .fs35 {font-size: 35px !important;}
 .fs36 {font-size: 36px !important;}
 .fs40 {font-size: 40px !important;}
 .fs45 {font-size: 45px !important;}
 .fs48 {font-size: 48px !important;}
 .fs56 {font-size: 56px !important;}
 .fs70 {font-size: 70px !important;}
 .fs80 {font-size: 80px !important;}
 .fs90 {font-size: 90px !important;}
 .lh5 {line-height: 5px !important;}
 .lh10 {line-height: 10px !important;}
 .lh16 {line-height: 16px !important;}
 .lh18 {line-height: 18px !important;}
 .lh19 {line-height: 19px !important;}
 .lh20 {line-height: 20px !important;}
 .lh21 {line-height: 21px !important;}
 .lh22 {line-height: 22px !important;}
 .lh24 {line-height: 24px !important;}
 .lh26 {line-height: 26px !important;}
 .lh28 {line-height: 28px !important;}
 .lh31 {line-height: 31px !important;}
 .lh32 {line-height: 32px !important;}
 .lh34 {line-height: 34px !important;}
 .lh35 {line-height: 35px !important;}
 .lh37 {line-height: 37px !important;}
 .lh40 {line-height: 40px !important;}
 .lh42 {line-height: 42px !important;}
 .lh45 {line-height: 45px !important;}
 .lh48 {line-height: 48px !important;}
 .lh50 {line-height: 50px !important;}
 .lh52 {line-height: 52px !important;}
 .lh60 {line-height: 60px !important;}
 .lh62 {line-height: 62px !important;}
 .lh68 {line-height: 68px !important;}
 .lh70 {line-height: 70px !important;}
 .lh80 {line-height: 80px !important;}
 .lh90 {line-height: 90px !important;}
 .mar0 {margin: 0 !important;}
 .marT0 {margin-top: 0 !important;}
 .marT4 {margin-top: 4px !important;}
 .marT8 {margin-top: 8px !important;}
 .marT12 {margin-top: 12px !important;}
 .marT16 {margin-top: 16px !important;}
 .marT24 {margin-top: 24px !important;}
 .marT32 {margin-top: 32px !important;}
 .marB0 {margin-bottom: 0 !important;}
 .marB4 {margin-bottom: 4px !important;}
 .marB8 {margin-bottom: 8px !important;}
 .marB12 {margin-bottom: 12px !important;}
 .marB16 {margin-bottom: 16px !important;}
 .marB24 {margin-bottom: 24px !important;}
 .marB32 {margin-bottom: 32px !important;}
 .pad20 {padding: 20px !important;}
 .padT0 {padding-top: 0 !important;}
 .padT4 {padding-top: 4px !important;}
 .padT8 {padding-top: 8px !important;}
 .padT16 {padding-top: 16px !important;}
 .padT24 {padding-top: 24px !important;}
 .padT32 {padding-top: 32px !important;}
 .padT40 {padding-top: 40px !important;}
 .padT48 {padding-top: 48px !important;}
 .padT64 {padding-top: 64px !important;}
 .padT80 {padding-top: 80px !important;}
 .padB0 {padding-bottom: 0 !important;}
 .padB4 {padding-bottom: 4px !important;}
 .padB8 {padding-bottom: 8px !important;}
 .padB16 {padding-bottom: 16px !important;}
 .padB24 {padding-bottom: 24px !important;}
 .padB32 {padding-bottom: 32px !important;}
 .padB40 {padding-bottom: 40px !important;}
 .padB48 {padding-bottom: 48px !important;}
 .padB64 {padding-bottom: 64px !important;}
 .padB80 {padding-bottom: 80px !important;}
 .padL0 {padding-left: 0 !important;}
 .padL8 {padding-left: 8px !important;}
 .padL10 {padding-left: 10px !important;} /*added 3/11/25*/
 .padR10 {padding-right: 10px !important;} /*added 3/11/25*/
 .padL16 {padding-left: 16px !important;}
 .padL20 {padding-left: 20px !important;}
 .padL24 {padding-left: 24px !important;}
 .padL30 {padding-left: 30px !important;}
 .padL35 {padding-left: 35px !important;}
 .padR0 {padding-right: 0 !important;}
 .padR8 {padding-right: 8px !important;}
 .padR16 {padding-right: 16px !important;}
 .padR20 {padding-right: 20px !important;}
 .padR24 {padding-right: 24px !important;}
 .padR30 {padding-right: 30px !important;}
 .padR35 {padding-right: 35px !important;}
 .padLR0 {padding-left: 0 !important; padding-right: 0 !important;}
 .padLR8 {padding-left: 8px !important; padding-right: 8px !important;}
 .padLR10 {padding-left: 10px !important; padding-right: 10px !important;}
 .padLR15 {padding-left: 15px !important; padding-right: 15px !important;}
 .padLR16 {padding-left: 16px !important; padding-right: 16px !important;}
 .padLR20 {padding-left: 20px !important; padding-right: 20px !important;}
 .padLR24 {padding-left: 24px !important; padding-right: 24px !important;}
 .padLR25 {padding-left: 25px !important; padding-right: 25px !important;}
 .padLR30 {padding-left: 30px !important; padding-right: 30px !important;}
 .padLR35 {padding-left: 35px !important; padding-right: 35px !important;}
 .padLR40 {padding-left: 40px !important; padding-right: 40px !important;}
 .accountbox {padding: 25px 10px !important;}
 .width_auto {width: auto !important;}
 .width25pc {width: 25% !important;}
 .width50pc {width: 50% !important;}
 .width100pc {width: 100% !important;}
 .width8 {width: 8px !important;}
 .width14 {width: 14px !important;}
 .width16 {width: 16px !important;}
 .width20 {width: 20px !important;}
 .width24 {width: 24px !important;}
 .width25 {width: 25px !important;}
 .width30 {width: 30px !important;}
 .width32 {width: 32px !important;}
 .width40 {width: 40px !important;}
 .width48 {width: 48px !important;}
 .width50 {width: 50px !important;}
 .width92 {width: 92px !important;}
 .width96 {width: 96px !important;}
 .width112 {width: 112px !important;}
 .width114 {width: 114px !important;}
 .width115 {width: 115px !important;}
 .width120 {width: 120px !important;}
 .width132 {width: 132px !important;}
 .width140 {width: 140px !important;}
 .width160 {width: 160px !important;}
 .width167 {width: 167px !important;}
 .width177 {width: 177px !important;}
 .width179 {width: 179px !important;}
 .width240 {width: 240px !important;}
 .width372 {width: 372px !important;}
 .width374 {width: 374px !important;}
 .width382 {width: 382px !important;}
 .width414 {width: 414px !important;}
 .height_auto {height: auto !important;}
 .height8 {height: 8px !important;}
 .height16 {height: 16px !important;}
 .height24 {height: 24px !important;}
 .height32 {height: 32px !important;}
 .height40 {height: 40px !important;}
 .height48 {height: 48px !important;}
 .h414 {height: 414px !important;}
 .height65 {height: 65px !important;}
 .height85 {height: 85px !important;}
 .height190 {height: 190px !important;}
 .height200 {height: 200px !important;}
 .height205 {height: 205px !important;}
 .height220 {height: 220px !important;}
 .height230 {height: 230px !important;}
 .height270 {height: 270px !important;}
 .height280 {height: 280px !important;}
 .height310 {height: 310px !important;}
 .height370 {height: 370px !important;}
 .height442 {height: 442px !important;}
 .height450 {height: 450px !important;}
 .height505 {height: 505px !important;}
 .height620 {height: 620px !important;}
 .height664 {height: 664px !important;}
 .fs8 {font-size: 8px !important;} 
 .font_normal {font-weight: normal !important;}
 .crdtnad_bg {background-image: none !important;height: auto !important; width: 394px !important;}
 .width30pc {width: 30% !important;}
 .width70pc {width: 70% !important;}
 .marR10 {margin-right: 30px !important;} 
 .fbold {font-weight: bold !important;}
 .width_unset {width: unset !important;}
 .cta_4_col_pad {padding: 10px 8px 0 !important;} /*added 4/3/25*/
 }
 @supports (-webkit-touch-callout: none) {
 .header_nav {width: 100%;}
 }
  </style>
  <!--[if !mso]><!-->
  <style>
   @media (-webkit-min-device-pixel-ratio:0) {
 /*Macys Sans*/
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 400; src: local('Macys Sans'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc2NTQyfQ:1uI3bZ:WRqu8BtRFblof1glqV1DdFY4aLz7CGCYNHi139xEuQU') format('woff');}
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 500; src: local('Macys Sans Medium'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansMdv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc3MTgyNX0:1uI3bZ:T0osCz0KJDkGkq0R3hg2TUPQJWnTUcmYkNcGQpK2wjk') format('woff');}
 @font-face {font-family: 'Macys Sans'; font-style: normal; font-weight: 700; src: local('Macys Sans Bold'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FMacysSansBdv2.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc3NDk3Mn0:1uI3bZ:FJIapb-rWl3YkaBFq5fNCKCIKOc9mPOSRpwuEiOY0jA') format('woff');}
 /*TT Ramillas*/
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 400; src: local('TT Ramillas'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Regular.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc3NjQ1M30:1uI3bZ:o8HfedPA5lWOzvr4NZUk0OjCeZHthh-zWYNgYdPXNE8') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Regular.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc3Nzc1NX0:1uI3bZ:Z6xnlr495DQSi2b-JvjTckE7cvOlqjqBMxewCYf3nuE') format('truetype');}
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 500; src: local('TT Ramillas Medium'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Medium.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc3OTA4M30:1uI3bZ:HE9Ce5wutIIceY7J-x_P0Yeg_X-4mYT98i-H9GQLF6E') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Medium.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc4MDQ3M30:1uI3bZ:5vqgPPosJZ3cOMX-TLmOq-6ndaCDA0eClc3wdXktu8g') format('truetype');}
 @font-face {font-family: 'TT Ramillas'; font-style: normal; font-weight: 700; src: local('TT Ramillas Bold'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Bold.woff/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc4MTcyN30:1uI3bZ:OENXPQCbo-IXp8yGefV0PDC40MzynXn919u8Q05Ixsc') format('woff'), url('https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FTTRamillas-Bold.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMDc4MzYzN30:1uI3bZ:1PQF320AtR0ST1mmqP2dquhfNU7Usmklkm0IOAGj81s') format('truetype');}
 /*font weights*/
 .fw_medium {font-weight: 500 !important;}
 .cta_01 {font-weight: 500 !important;}
 .cta_02 {font-weight: 700 !important;}
 }
 @media (-webkit-min-device-pixel-ratio:0) and (max-width: 480px) {
 .cta_01 {font-weight: 500 !important;}
 .cta_02 {font-weight: 500 !important;}
 }
  </style>
  <!--<![endif]-->
  <!--[if gte mso 9]>
 <style type="text/css">
 .mso_border_none {border: none !important;}
 .mso_button_01 {mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: "0 \#FFFFFF 0 100000\,100000 \#FFFFFF 0 100000"; color: #000000 !important; background: transparent !important; background-color: transparent !important; border: none !important;}
 .mso_button_02 {mso-style-textfill-type: gradient; mso-style-textfill-fill-gradientfill-stoplist: "0 \#000000 1 100000\,99000 \#000000 1 100000"; color: #FFFFFF !important; background: transparent !important; background-color: transparent !important; border: none !important;}
  .keep-white {mso-style-textfill-type:gradient; mso-style-textfill-fill-gradientfill-stoplist:"0 \#FFFFFF 0 100000\,100000 \#FFFFFF 0 100000";color: #000000 !important}
  .keep-black {mso-style-textfill-type:gradient; mso-style-textfill-fill-gradientfill-stoplist:"0 \#000000 1 100000\,99000 \#000000 1 100000";color: #ffffff !important}
 </style>
 <![endif]-->
  <style>
   @media (prefers-color-scheme: dark){
  .dm_bg_dark {background-color: #000001 !important}
  .dm_bg_darkgrey {background-color: #323232 !important}
  .dm_bg_white {background-color: #fffffe !important}
  .dm_bg_star-red {background-color: #EB6449 !important} /*dark mode color for hex color #CC0000. Can be added on td cell as needed.*/
  .dm_bg_pedi-red {background-color: #F1967D !important} /*dark mode color for hex color #8D0000. Can be added on td cell as needed.*/
  .dm_bg_spice {background-color: #7B510E !important} /*dark mode color for hex color #DB993C. Can be added on td cell as needed.*/
  .dm_bg_sand {background-color: #433412 !important} /*dark mode color for hex color #F3D7A6. Can be added on td cell as needed.*/
  .dm_bg_pearl {background-color: #31312C !important} /*dark mode color for hex color #E8E7E1. Can be added on td cell as needed.*/
  .dm_bg_stainless-steel {background-color: #525558 !important} /*dark mode color for hex color #C3C3C3. Can be added on td cell as needed.*/
  .dm_bg_flannel-suit {background-color: #96989B !important} /*dark mode color for hex color #767676. Can be added on td cell as needed.*/
  .dm_bg_loyalty-bronze {background-color: #A75C12 !important} /*dark mode color for hex color #D57200. Can be added on td cell as needed.*/
  .dm_bg_loyalty-silver {background-color: #424548 !important} /*dark mode color for hex color #D6D6D6. Can be added on td cell as needed.*/
  .dm_bg_loyalty-gold {background-color: #544009 !important} /*dark mode color for hex color #F0C006. Can be added on td cell as needed.*/
  .dm_bg_loyalty-platinum {background-color: #626F78 !important} /*dark mode color for hex color #8997A0. Can be added on td cell as needed.*/
  .dm_bg_skyblue {background-color: #264B60 !important} /*dark mode color for hex color #CBE4F8. Can be added on td cell as needed.*/
  h1 a, h2, h2 a, h3, h3 a, h4 a, h4, h5 a, h5, h6 a, div.fs24, div.fs18, .font_ramp p, .font_ramp p > a, p.center, p.fs14, p.fs14 a, p.fs12, p.fs12 a, p.center a, p a.keep-white, .navlink_container a , a.cta_01, a.fs14, .dm_txt_white {color: #fffffe !important}
  .btn_outline_white {color: #fffffe !important; border-color: #fffffe !important; background-color: transparent !important;}
  .btn_outline_black {color: #00000F !important; border-color: #00000F !important; background-color: transparent !important;}
  #converted-body .btn_outline_black {
  -webkit-text-fill-color: #00000F !important; border-color: #00000F !important; background-color: transparent !important;}
  .btn_full_white {color: #00000F !important; border-color: #fffffe !important; background-color: #fffffe !important;}
  .btn_full_black {color: #fffffe !important; border-color: #00000F !important; background-color: #00000F !important;}
  .hr {background-color: #fffffe !important;}
  .dm_txt_black, a.dm_txt_black {color: #00000F !important}
  .dm_txt_red {color: #CC0000 !important}
   }
  </style>
  <!--Custom Styles go here if needed. -->
  <style>
   @media screen and (max-width: 480px) {
    .txt_center {text-align: center !important;}
   }
  </style>
 </head>
 <!-- dynamic variable that should hold the global CSS for global modules -->
 <body class="body" style="margin:0px; padding:0px;">
  <table cellpadding="0" cellspacing="0" style="border: 0px; padding: 0px; margin: 0px; position: absolute; display: none; float: left">
   <tr>
    <td height="1" style="font-size: 1px; line-height: 1px; padding: 0px;">
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fpub%252Fas%253F_ri_%253DX0Gzc2X%253DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXHkMX%253Dw%2526_ei_%253DEUlaGGF4SNMvxFF7KucKuWM9ji_Y0Am4cfInxGDseahiuk_SdPlHnpFSP0FuDv4OSTiu_m21abxHXC3_8aCsVWOg01hNOWlzdJ7frZ6L_qks4robEiAle4eE7rV0Z8kV1A5JblEe6ZnJOMVQcm7et8saguVzvtUaQXn9j_h8Y4GOa1YI9o5h58c4LKO5G6gSXSt-6z3QIkjWFFrPOvdUl2FD4LNdahAzJ2TvdsQxPFqYA9XpYydzVBE9KmAWd07Eki9M./?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ3OTc4M30:1uI3bZ:u5AyL9Ug_JXTmqCTePo5deWW18OJyZjc6dz8dpIl4Fc"/>
    </td>
   </tr>
  </table>
  <!-- Invisible Preheader -->
  <div style="display:none; font-size:1px; line-height:1px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; mso-hide:all; font-family:sans-serif;">
   Outfits, extras &amp; more from our Memorial Day Sale  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
  </div>
  <!-- /Invisible Preheader -->
  <!-- Container -->
  <table bgcolor="#f2f2f2" border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
   <tr>
    <td align="center" valign="top">
     <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width:688px; max-width:688px; margin:0 auto;" width="688">
      <tr>
       <td align="center" bgcolor="#fffffe" class="dm_bg_dark">
        <!-- H1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414 dm_bg_dark" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" class="padLR20 padT24 padB8" style="padding: 32px 30px 16px;">
           <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation" width="100%">
            <tr>
             <th align="left" class="block padB8">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Macy's" class="center" height="40" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Flogo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4MjE4Mn0:1uI3bZ:lA2AjzwFBuSX6mztMlsdPtxw60Yppmfjsu2Xnyfe6nE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 22px; line-height: 26px; font-weight: 500; text-align: center;" width="132"/>
              </a>
             </th>
             <th align="right" class="block center fs13 fw_medium" style="font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 14px; line-height: 20px; font-weight: 500;">
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Women
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Men
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Home
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Handbags
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Shoes
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Beauty
              </a>
              <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
               Brands
              </a>
             </th>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /H1.1 -->
        <!--  WaterFall-1 Display customer's star money about to expire (within 7 days)-->
        <table bgcolor="#000000" border="0" cellpadding="0" cellspacing="0" class="dm_bg_white" role="presentation" width="100%">
         <tr>
          <td align="center" class="padLR25" style="padding: 20px 0px;">
           <p class="dm_txt_black" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 14px; line-height: 16px; font-weight: 700;">
            Not a Star Rewards member?
            <a class="dm_txt_black" data-litmus-ignore="" style="color: #ffffff; text-decoration: underline; white-space: nowrap; font-weight: 400; vertical-align: baseline; white-space: nowrap;" target="_blank">
             Join Now
            </a>
           </p>
          </td>
         </tr>
        </table>
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 0px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" height="791" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_MB1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4MzZ9:1uI3bZ:qRKTbn_6JrPJbt8Ci10i5H2zu_1v420GUxci1KHiRf4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_MB1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4NDczNX0:1uI3bZ:k2TBZ6nyMWIfpJlCPEpa78RGFXPHK3N-lEQlYsyZ9B0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB T2.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#ffffff" class="padLR20 dm_bg_dark" style="padding: 24px 30px 0px;">
           <h1 class="fs36 lh42" style="margin: 4px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #020202; font-size: 45px; line-height: 50px; font-weight: normal;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Major deals for everything
             <br class="hide"/>
             on your packing list
            </a>
           </h1>
          </td>
         </tr>
        </table>
        <!-- /MB T2.1 -->
        <!-- 9 buttons -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 padB32 dm_bg_dark" style="padding: 32px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDCDTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=1g83kqnbfuqqp36lgfup26mo7pbvgef42aumskb754jlm9tvuekg" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Women
                </span>
                <span class="inline_block" style="display: none;">
                 Women
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="center">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDCDWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=vujfa0sfspbseha0lier27nk1npf34lh02jbsr1sg5rutkc4t49g" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Men
                </span>
                <span class="inline_block" style="display: none;">
                 Men
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDCDAT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=32k7u6uqg6t41t6l4mohhg6b3oufqo8h9pndgtffv4d9uubt748g" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Kids &amp; toys
                </span>
                <span class="inline_block" style="display: none;">
                 Kids &amp; toys
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
           <div class="spacer hide" role="presentation" style="max-height: 8px; line-height: 8px;">
            ‌ ‌
           </div>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDCDCT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=fmc47olfsnto411788qkra7gdg1od183hl5q31llld07ighi10cg" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Beauty
                </span>
                <span class="inline_block" style="display: none;">
                 Beauty
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="center">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDDRRT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=t8uvftbsdo3k245th3ft26997bvteua12h59t8ev57tqqvj987bg" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Home
                </span>
                <span class="inline_block" style="display: none;">
                 Home
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDDRTT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=2a2vgk5juebdck431qb14n5811rho5niqkpis7b53m861r26hlrg" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Bed &amp; bath
                </span>
                <span class="inline_block" style="display: none;">
                 Bed &amp; bath
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
           <div class="spacer hide" role="presentation" style="max-height: 8px; line-height: 8px;">
            ‌ ‌
           </div>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="left">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDDRWT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=2urp3pta6r22fji0454hdn3kqast0o2f71i4i3f9npeg43jksjsg" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Shoes
                </span>
                <span class="inline_block" style="display: none;">
                 Shoes
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="center">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDDRAT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=9q0e64gff68u3ahtk2fp13hevvmutahi5fe6eukpl48tes1cet0g" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Jewelry
                </span>
                <span class="inline_block" style="display: none;">
                 Jewelry
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
             <td align="right">
              <div class="button" role="presentation">
               <!--[if mso]><v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" data-litmus-ignore   href="https://emails.macys.com/pub/cc?_ri_=X0Gzc2X%3DAQjkPkSTUQGza50WjsFaTpzfky4DKczd57GRvkI66NIelzgzdzcJGgNm0zbsTGnYMddJOzbOWVXtpKX%3DYRBDDRCT&_ei_=ESanqJZRRKNyWg-_1NaP4NkewFD87ws9jOW6qBjT6T_tSeBQcT7s8Bwu9Vg3gjldWNKDztifd2_k1Qm7ECiKrfR6Jr32ltmZUIJ08IzGgAd40bsmj3nwNcfHrNSk6_TLsg3ucWu5_4DX7OQXfgu00lGdjho-5yKlAaJ9X-ZrKszNZdJziYVKPV1kXJ4iE0HJr4U4DCdgawoChrSOzdLPTszKuySiwSq6CfWnQJlNGPqF35_t84zP0cjuhEHJZ3kWuaZjkdTSE8zwxMv71arIdf65WwPotNqdh--mbqqxAWKkhSIyxqtNp_VGQYKL5tnhT7_BjKOXySq7weZln03W9zyBhlajj6Dy58U5cgUPD4GIM1NPc6npYhCqg8w4I8ivKJzskE60sMliGXN8dJAX_ayvB8I69P8sPZZR7Wo.&_di_=s34ahfios63qj8fuh2k5mt2s0sb3hamnr8aj6il9gfrdqkk13m20" style="width: 190px; height: 50px; v-text-anchor:middle;" arcsize="10%" stroke="t" strokeweight="1" strokecolor="#C0C0C0" fillcolor="none"><w:anchorlock/><center><![endif]-->
               <a class="mso_border_none cta_02 width112 btn_outline_white" data-litmus-ignore="" style="display: inline-block; text-align: center; border: 1px solid #C0C0C0; border-radius: 5px; background-color: transparent; width: 190px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 50px; font-weight: 700; text-decoration: none; -webkit-text-size-adjust: none;" target="_blank">
                <span class="hide">
                 Handbags
                </span>
                <span class="inline_block" style="display: none;">
                 Handbags
                </span>
               </a>
               <!--[if mso]></center></v:roundrect><![endif]-->
              </div>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /9 buttons -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            Go-tos for city sightseeing
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4NTc1M30:1uI3bZ:JWVVO0b5Gy700KK0p7zcetT_sAvBUxKbQ-bIuQxLQpA" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4NjczOH0:1uI3bZ:yaIBSs3-6_ErdAY4CQ-Z8dD-FNe4KuW6teE0AyDkLAI" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Lightweight cotton dresses to wear out &amp; about.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4Nzc0Nn0:1uI3bZ:2O8B9HVZsa30QLm-TFiBXx5YTBE1mBmHhCs8ATf83dU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4ODc1NX0:1uI3bZ:x8OlHblHfw45YX-BpRnOcqdUl1iZBunSrYPao5BZ01Q" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30-50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Chic women’s shoes that give you the support you need.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB3.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ4OTc1Nn0:1uI3bZ:DHasdHJGcIFzNpoelyjpdZHxakN48Il8lNWQVCX8tCU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB3.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5MDc1NX0:1uI3bZ:4FtbV--EcfQvlV18W1s5XHCSU8CS1f-cYUWJs9Q6RX8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Effortlessly cool men’s matching sets get you ready to go in an instant.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB4.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5MTc1fQ:1uI3bZ:fLI5w--2BeQzW5rGtts_rq3_kay6kDutDqPIgW6LFX0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB4.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5MjgwOH0:1uI3bZ:zJrBD8kWL_50yMuOGpdqhiVoXdcHfOBpcPNykYjg8nc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                25-50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Kids’ &amp; baby looks for any kind of adventure.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Styles for soaking up the sun
            </a>
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB5.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5NDI3NH0:1uI3bZ:YX9dtL04-dK4s0REMIodUPboXh_UtnX-w-xrkiFJXDE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB5.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5NTg3fQ:1uI3bZ:4e4hI7bS4DIglLeypiIZbgYmdMwKvUsDcFwSsCqmPuc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Women’s swim &amp; cover-ups for the beach and beyond.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB6.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5Njk4M30:1uI3bZ:VGfVqfz7wJTmEXJcp0Okntx7uyKaYOcy18DS0zc3unE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB6.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5ODAxN30:1uI3bZ:Lg7dToWPLcc45KhQA1NIJB4FC4edct7hl8dFj06E_nQ" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Men’s swim in bold patterns, vibrant colors &amp; more.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB7.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTQ5OTAyOH0:1uI3bZ:r9jytFz7LxK263i298KhDIipzVqpITPy-80oNwRJr1M" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB7.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwMDl9:1uI3bZ:HPTIob1riG_82esgpxUuCQJhbvxQLu2Jbia7vYeUhk4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                25-50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Kids’ &amp; baby swim for making a splash.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB8.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwMjA5NH0:1uI3bZ:3O34fHO5H5tJTs0DCs8xjJty9YfN1QmNb8v0yZQwCLw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB8.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwMzIzfQ:1uI3bZ:eKQJyTZzoHByFXptlHd5BeaecyKsMGmB18zCG0O5WAg" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                $14.99
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Beach towels from Lacoste &amp; more add a little luxury. Reg. $40
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            Hit the hiking trail in new gear
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB9.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwNDM0fQ:1uI3bZ:4qWQwvGZfxPUOXWWFJ7d_gD0B_ELU_WvqxlKr3VZM_s" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB9.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwNTM3NX0:1uI3bZ:1SzS3BCiEGN-_3in_9DopQIuzpSibxOXVOo_K44pLDo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                $30 &amp; under
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Women’s &amp; men’s active from top brands. Reg. $14.50-$49.50
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB10.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwNjM4Nn0:1uI3bZ:cdCv8oI7nIu9VLess-pwQEQc5HmW9Bb7DHgH4XdXYAU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB10.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwNzM5NH0:1uI3bZ:FK4LQpYzraBjCGbO_tGKXdYZ65uymqLFmnBK_JFzlXY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                25% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Outdoor styles from Columbia &amp; The North Face.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB11.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwODM5M30:1uI3bZ:GwBcdgmskfoLHhaKKqaatU5CkGqVl65s9zZkQ0b3tJ0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB11.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUwOTM5Mn0:1uI3bZ:cgj7WBd3GgwcjlYPH-FzHCwD4-cdTEBw5zReuIsF8QY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                25-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Kids’ &amp; baby active sets from Nike &amp; more that keep up with them.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB12.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxMDM5MX0:1uI3bZ:q0uEcXfHSIRIF49ZvfYsIoENCJsyx864nWkfWz58AcY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB12.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxMTM5fQ:1uI3bZ:hLsZBdPfRn-9kxHzOW0Qj_BkiP8Z5tiFTNKvKA2KKn0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Sneakers from Reebok &amp; more for the whole family.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            Get ready for theme park thrills
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB13.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxMjM4N30:1uI3bZ:EZnKKxiJrs0AA9kYXyI17uCJghnlk6CmUe6uhVH3Lgo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB13.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxMzU4MX0:1uI3bZ:_yAX7Vo5DKMAriDpjuUAORzYgDi9VTkpSEr56Ry3Mbs" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Easy-to-pair women’s tank tops and tees.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB14.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxNDYxOH0:1uI3bZ:aKondk6wC4kEkLKNiq_cfa-or8ca-UQd7LkDn2dKRUo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB14.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxNTYxNX0:1uI3bZ:sGaDkDvdVj731XgKIIJkV7kNOyKdCZRSPapzdjKO-68" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Starting at $9
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Kids’ T-shirts featuring their favorite characters. Reg. $18-$24
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB15.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxNjYyfQ:1uI3bZ:Imp2OA0N2n4ILCkvKUFpAmb4RXBwR-TX7uFq83XkYp4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB15.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxNzYwOH0:1uI3bZ:YH1UPpRR1Qp23GPg_CP_BXbYyOnit161BPztnmkwl8c" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Men’s Levi’s
               <sup>
                ®
               </sup>
               shorts &amp; more that go with everything.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB16.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxODYwN30:1uI3bZ:OIF2qhgg6e_7P6BCChB81G43pGzoo05nyGEplH0ug04" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB16.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUxOTU4NX0:1uI3bZ:RxOXlOmnUv93dzPmSmmbfcr5AMhrQDSDXj7oRvKBngw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                Starting at $19.99
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Comfortable men’s sandals for a full day of walking. Reg. $59.99-$200
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             Revamp your space for a staycation
            </a>
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB17.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyMDU3Mn0:1uI3bZ:PcRPL6JGXyBe9LhgjtYUmgv6Q9qMfVx4Hl3M3VwhBy8" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB17.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyMTg2fQ:1uI3bZ:9iPI-0tfxy-I2oCFtemrYFsO8gV6jwTsbdLdgVVJskg" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Cuisinart barbecue essentials make grilling a breeze.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB18.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyMzA1NH0:1uI3bZ:mcgZtpCqH1l-ICeyaLjr--PTdT34OCHPAe_ENzj-C0c" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB18.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyNDI3fQ:1uI3bZ:irDK4BfwrJN1zmUUsbZ9eBdiuyEf2AOGvj6n3Nla2Qc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                40-50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Durable outdoor dinnerware for picnics &amp; more.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB19.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyNTMwNH0:1uI3bZ:-hzfD476kcpY9X2-sHRIgwCthq64m8SCu5lN4A4QfxM" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB19.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyNjMwM30:1uI3bZ:B_dZEdm1bdvUAE12wUE__p0CpKEp33s-HTIbFO-qCvc" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                15% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Cookware from The Cellar for delicious side dishes. Exclusively at Macy’s.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB20.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyNzI4OH0:1uI3bZ:pgvn_3GETAZUfwLJ7IWAHt99XPDOFg1A6-i8_zVjZQU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB20.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyODI3fQ:1uI3bZ:CsXyDGnPfci3uIGzmV7FaUjaDnIsP34QdZd-VQb0XPg" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                15% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Outdoor toys from Stats, Nerf &amp; more that equal hours of fun.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- S1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padT24 dm_bg_dark" style="padding: 32px 30px 8px;">
           <h3 class="fs24 lh31" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            Don’t forget all the extras
           </h3>
          </td>
         </tr>
        </table>
        <!-- /S1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB21.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUyOTI0OH0:1uI3bZ:zNldas0xuofBeb0jcsDbBvUohWRuosUzKYjFTg7r09I" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB21.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzMDIzfQ:1uI3bZ:MCxajY6QYjgTTVnAuQ1yssUdLzMhaN5eiA35eN5qNj0" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               IT Cosmetics Hello Sunshine Invisible Face Sunscreen—because SPF is a must.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB22.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzMTIxNX0:1uI3bZ:AA7o9RxTW_BK8gUN90xg8jejwzYuV5LBAkiD-y-7QrU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB22.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzMjE4N30:1uI3bZ:8WgqptIh4OnRqgw8NkleFNnJQhEEyh_exaWrZZ6sIHI" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                50% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Luggage from florence by mills x Delsey Paris to hold everything.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- P1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="left" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr valign="top">
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB23.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzMzQxOH0:1uI3bZ:N5y2_2y_vxN85ZfwoO8VckXoCHmz5WLO27fcpnSBQkw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB23.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzNTA2OH0:1uI3bZ:jxBOqyHzQv-Nc7si6nC6iyi-4GwsIZ2qHlbs49_LIoU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                20-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Stylish designer sunglasses from Dolce&amp;Gabbana and more.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
             <td class="width16" style="width: 24px;">
              ‌ ‌
             </td>
             <td align="left">
              <div style="margin: 0px 0px 16px; min-width: 179px;">
               <div class="hide">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" height="378" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB24.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzNjc0fQ:1uI3bZ:Xo5k46Qb-N6eNVrlFIIW4CZvFaOwlR7JMgsCgp2wsXw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="302"/>
                </a>
               </div>
               <!--[if !mso]><!-->
               <div class="block" style="display: none;">
                <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                 <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB24.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzODI2NX0:1uI3bZ:v9XsblAN7t8I_Iel_LuZLSNUkZQozYAG85KOEUPv3t4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 179px;" width="0"/>
                </a>
               </div>
               <!--<![endif]-->
              </div>
              <h5 class="fs16 lh21" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: bold;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
                30-40% off
               </a>
              </h5>
              <h5 class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 23px; font-weight: normal;">
               Backpacks, handbags &amp; more that make great carry-ons.
              </h5>
              <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
               <tr>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /P1.1 -->
        <!-- M5.3 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="padLR20 padB32 dm_bg_dark" style="padding: 16px 30px 48px;">
           <div style="margin: 0px 0px 24px;">
            <div class="hide">
             <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
              <img alt="" height="628" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501109_101.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTUzOTc5fQ:1uI3bZ:R-Fa9A3z0bTUKqRMj3zKz8YV2dwGASZXG-z_K0urIFU" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="628"/>
             </a>
            </div>
            <!--[if !mso]><!-->
            <div class="block" style="display: none;">
             <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
              <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501109_101.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0MTM4M30:1uI3bZ:EPEZ94xHWM_FBvWbYZNRtsncHLOHLE_GpioKth8sm8E" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 374px;" width="0"/>
             </a>
            </div>
            <!--<![endif]-->
           </div>
           <h3 align="center" class="fs24 lh31" style="margin: 4px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
            <a data-litmus-ignore="" style="color: #000000; text-decoration: none;" target="_blank">
             50% off top beauty deals &amp; more
            </a>
           </h3>
           <h5 align="center" class="fs16 lh21" style="margin: 8px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 14px; line-height: 16px; font-weight: normal;">
            Don’t miss limited-time deals, refreshed daily. Ends 5/25.
           </h5>
           <table border="0" cellpadding="0" cellspacing="0" class="navlink_container" role="presentation">
            <tr>
             <td align="center" style="padding: 16px 0px 0px 16px;">
              <a class="cta_01" data-litmus-ignore="" style="text-decoration: underline; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 18px; line-height: 20px; font-weight: 500;" target="_blank">
               Shop 10 Days of Glam
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /M5.3 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 0px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" height="234" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB25.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0MzM4fQ:1uI3bZ:6-IVNHcJL0kLCeiu0mkHhO8p6qKIlgybEVWmyw31sMY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252Fastra%252F202505%252Fmkt_components%252F20250522_MCOM_SiteMemDay_L2501425%252Fimages%252FL2501425_SB25.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0NTA3fQ:1uI3bZ:CPquGF9-48gvn95xhz8xfUsESHIzvBca8oMAodhFxXY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- MB I1.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 16px 0px 0px;">
           <div class="hide">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" height="692" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FBrooksMMNMay3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0NjE5N30:1uI3bZ:UejAhNzmljyhZEQUeh6Hs4oAkZ_JVUIho0caHHuB2f4" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center;" width="688"/>
            </a>
           </div>
           <!--[if !mso]><!-->
           <div class="block" style="display: none;">
            <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
             <img alt="" class="em_img" height="0" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fcontent%252Fmacys%252FBrooksMMNMay3.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0NzEzNn0:1uI3bZ:1t46SoidywOz37NEEnHsKiWHA-MnjUCZbIiyNy6fPDQ" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 16px; line-height: 20px; font-weight: normal; text-align: center; max-width: 414px;" width="0"/>
            </a>
           </div>
           <!--<![endif]-->
          </td>
         </tr>
        </table>
        <!-- /MB I1.1 -->
        <!-- F1.1 -->
        <!-- F2.1 -->
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="width414" role="presentation" style="width: 688px;">
         <tr>
          <td align="center" bgcolor="#fffffe" class="dm_bg_dark" style="padding: 48px 0 56px;">
           <table bgcolor="#f6f6f6" border="0" cellpadding="0" cellspacing="0" class="dm_bg_darkgrey" role="presentation" width="100%">
            <tr>
             <td align="center">
              <h3 class="fs18" style="margin: 24px 24px 24px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #000000; font-size: 25px; line-height: 30px; font-weight: bold;">
               More to explore
              </h3>
              <table border="0" cellpadding="0" cellspacing="0" role="presentation">
               <tr>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_pickup_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0ODE2Nn0:1uI3bZ:2mT_6dSI8Jjuhqq8WsBkMug3l5E9pligw71U4trEs3c" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR16" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Buy online, pick up
                      <span style="white-space: nowrap;">
                       in store
                      </span>
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
                <td class="width16" style="width: 24px;">
                 ‌ ‌
                </td>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_store_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU0OTE1OH0:1uI3bZ:8t5ApNwVL1rhzOhiDc73trLanKsDBcqkoWVCRdos4Yw" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR20" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Find your Macy’s store
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
                <td class="width16" style="width: 24px;">
                 ‌ ‌
                </td>
                <td align="center" bgcolor="#fffffe" class="width114 height_auto padT16 padB16 dm_bg_dark" height="100" style="width: 192px; height: 100px;">
                 <table border="0" cellpadding="0" cellspacing="0" role="presentation">
                  <tr>
                   <th align="center" class="block">
                    <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
                     <img alt="" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_explore_style_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1MDEyOH0:1uI3bZ:Xkxp52lGhVQAakbHRmSWlpkdtqSxySABihBLbEYD9QE" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="44"/>
                    </a>
                   </th>
                   <th class="block" style="width: 16px; height: 8px; max-height: 8px;">
                    ‌ ‌
                   </th>
                   <th align="center" class="block width_auto padLR16" style="width: 88px;">
                    <a data-litmus-ignore="" target="_blank">
                     <p class="center" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #000000; font-weight: 600; text-align: left;">
                      Free
                      <span style="display: block;">
                       styling
                      </span>
                      services
                     </p>
                    </a>
                   </th>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
              <div class="spacer" role="presentation" style="max-height: 32px; line-height: 32px;">
               ‌ ‌
              </div>
             </td>
            </tr>
           </table>
           <table bgcolor="#000001" border="0" cellpadding="0" cellspacing="0" class="dm_bg_white" role="presentation" width="100%">
            <tr>
             <td align="center" style="padding: 16px 24px 16px;">
              <h3 class="fs18 dm_txt_black" style="margin: 0; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; color: #ffffff; font-size: 25px; line-height: 32px; font-weight: normal;">
               <a class="dm_txt_black" data-litmus-ignore="" style="color: #ffffff; text-decoration: none;" target="_blank">
                Sign up for texts, get
                <strong>
                 25% off
                </strong>
                <span style="font-size: 16px; text-decoration: underline; vertical-align: baseline; white-space: nowrap;">
                 Sign Up
                </span>
               </a>
              </h3>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation">
            <tr>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Facebook" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_facebook_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1MTF9:1uI3bZ:p6nI1NcxusKm7V7pl1IRbSE1ux9RMTjsz03RrY2mmXQ" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Instagram" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_instagram_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1MjA4M30:1uI3bZ:KnspGyQs9JWv5n1kQT5l-8FLyVho8GeT2vmq_BhCyVo" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="TikTok" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_tiktok_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1MzA2Nn0:1uI3bZ:w3A1lk4iVm7pUDHNTfszhxcHwgTfAL0zAKR-BFxE1go" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
             <td class="width16" style="width: 32px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="YouTube" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_social_youtube_dm.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1NDIyfQ:1uI3bZ:9yfhoyoU3uVpLu0-2NQKPWxyx0V6wryuw8g1dp8LMKY" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="58"/>
              </a>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 16px; line-height: 16px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation">
            <tr>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Download on the App Store" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_app_apple.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1NTIyfQ:1uI3bZ:5rLOPt1oJAs0GRQXU6mepDFUAYKHwgPxHEe8mQmc9Nk" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="98"/>
              </a>
             </td>
             <td style="width: 24px;">
              ‌ ‌
             </td>
             <td align="center">
              <a data-litmus-ignore="" style="text-decoration: none;" target="_blank">
               <img alt="Get it on Google Play" src="https://inboxflows.com/_/image/https%253A%252F%252Femails.macys.com%252Fassets%252Fresponsysimages%252Fmacys%252Fcontentlibrary%252F_global_modules%252Fshell_2023%252Fimages%252Ffooter_app_google.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZlbWFpbHMubWFjeSIsInRpbWUiOjE3NDc5MTE0MTMuMTU1NjE4Mn0:1uI3bZ:hk7I3VqeOoRzILnPVH5sZEUl_UiIZa5EK35bLzCqxDM" style="display: block; border: 0; font-family: Helvetica, Arial, sans-serif; color: #000000; font-size: 12px; font-weight: normal;" width="110"/>
              </a>
             </td>
            </tr>
           </table>
           <div class="spacer" role="presentation" style="max-height: 24px; line-height: 24px;">
            ‌ ‌
           </div>
           <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
            <tr>
             <td align="center" class="padLR20">
              <!-- -->
              <p class="marB24 fs12 lh24" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 View Online
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Unsubscribe
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Customer Service
                </u>
               </a>
               <span class="block">
               </span>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Store Locator
                </u>
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                <u>
                 Macy’s Credit Card
                </u>
               </a>
              </p>
              <!-- -->
              <p class="marB24 fs12 lh18" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Regular and original prices reflect offering prices that may not have resulted in actual sales. See
               <a data-litmus-ignore="" style="color: #000000; text-decoration: underline; white-space: nowrap;" target="_blank">
                Pricing Policy
               </a>
               .
              </p>
              <!-- -->
              <p class="marB24 fs12 lh18" style="margin: 0px 0px 18px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Note: If you signed up to receive email alerts from Citibank N.A. regarding
               <br class="hide"/>
               your Macy’s Credit Account, you will continue to receive these alerts even if you unsubscribe.
               <br class="hide"/>
               To opt-out or change your communication preferences regarding your Credit Account,
               <br class="hide"/>
               visit
               <a data-litmus-ignore="" style="color: #000000; text-decoration: underline;" target="_blank">
                Macy’s Credit Card
               </a>
               , sign into your account, and go to Manage
               <span style="white-space: nowrap;">
                Credit Alerts.
               </span>
              </p>
              <!-- -->
              <address class="marB24 fs12 lh18 dm_txt_white" style="margin: 0px 0px 0px; font-style: normal; text-decoration: none; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a class="dm_txt_white" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Macys.com LLC,
               </a>
               <span class="block" style="white-space: nowrap;">
                151 West 34th Street, New York, NY 10001
               </span>
              </address>
              <!-- -->
              <address class="marB24 fs12 lh18 dm_txt_white" style="margin: 0px 0px 18px; font-style: normal; text-decoration: none; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               Macy’s Credit and Customer Service,
               <span class="block" style="white-space: nowrap;">
                PO Box 8113, Mason, OH 45040
               </span>
              </address>
              <!-- -->
              <p class="fs12 lh24" style="margin: 0px 0px 0px; font-family: 'Macys Sans', Helvetica, Arial, sans-serif; font-size: 12px; line-height: 18px; color: #000000; font-weight: normal;">
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Shipping Policy
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Return Policy
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Privacy Policy
               </a>
               <span class="block">
               </span>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Legal Notice
               </a>
               <a data-litmus-ignore="" style="color: #000000; text-decoration: none; white-space: nowrap;" target="_blank">
                Email Preferences
               </a>
              </p>
              <!-- -->
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
        <!-- /F2.1 -->
        <!-- /F1.1 -->
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <!-- /Container -->
  <table role="presentation">
   <tr>
    <td>
     <span style="visibility:hidden;">
      <font color="#ffffff" face="arial" size="1">
       20250522_MCOM_SiteMemDay_L2501425
      </font>
     </span>
    </td>
   </tr>
  </table>
 </body>
</html>