Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="//www.w3.org/1999/xhtml">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <!-- Turn off iOS phone number autodetect -->
  <meta content="telephone=no" name="format-detection"/>
  <meta content="address=no" name="format-detection"/>
  <!--[if mso]>
            <style>
                * { font-family: sans-serif !important; }
            </style>
        <![endif]-->
  <style type="text/css">
   /*
     * Styles for all the emails
     */

    /* Normalizing */
    #outlook a {padding:0;}
    * {
        -ms-text-size-adjust:100%;
        -webkit-text-size-adjust:100%;
    }
    html, body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        font-weight:normal;
        width:100% !important;
        height:100% !important;
        margin:0;
        padding:0;
    }
    img{border:0;outline:none;text-decoration:none;-ms-interpolation-mode:bicubic;height:auto;line-height:100%;display:inline-block;}
    a img{border:none;display:block;}
    h1 {color: #1E0A3C !important;}
    h2, h3, h4, h5, h6 {color:#1E0A3C !important;}
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color:#3F60E7 !important;}
    h1 a:active, h2 a:active,  h3 a:active, h4 a:active, h5 a:active, h6 a:active {color:#3F60E7 !important;}
    h1 a:visited, h2 a:visited,  h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {color:#3F60E7 !important;}
    table {border-collapse:collapse !important;mso-table-lspace:0pt;mso-table-rspace:0pt;}
    table td {border-collapse:collapse;mso-table-lspace:0pt;mso-table-rspace:0pt;}
    table {
        border-spacing:0;
        border:0;
        padding:0;
        table-layout:fixed;
        margin:0;
    }
    .no_text_resize {
        -moz-text-size-adjust:none;
        -webkit-text-size-adjust:none;
        -ms-text-size-adjust:none;
        text-size-adjust:none;
    }
    a[href^="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;
    }

    td[class="grid__col"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .grid__col {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Footer */
    .footer-content.bottom-section {
        padding: 0px 32px;
    }
    .content .align-center,
    .footer-content .align-center {
        text-align: center;
    }
    .footer-content {
        color: #B7B6C0 !important;
    }
    .footer-content a {
        color: #f05537 !important;
        text-decoration: none;
    }

    /* Social */
    .social-logo-container {
        display: inline-block;
        height: auto;
        margin: 0px;
    }


    .content {
        width: 600px;
    }


    /* Media Queries */
    @media all and (max-width: 600px) {
        .content {
            /* slight space on each side */
            width: 97% !important;
        }

        *[class="gmail-fix"] {
            display: none !important;
        }

        td[class="grid__col"] {
            padding-left: 0px !important;
            padding-right: 0px !important;
            max-width: 90% !important;
        }
        .grid__col {
            padding-left: 0px !important;
            padding-right: 0px !important;
            max-width: 90% !important;
        }
        .social-logo-container {
            display: inline-block !important;
        }
        .btn {
            font-size: 15px !important;
            padding: 12px 28px 14px !important;
            margin-bottom: 18px;
        }
        .hide {display:none;}
    }
  </style>
  <!--[if (mso)|(IE)]>
            <xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v" />
            <style>
                v\: * { behavior:url(https://inboxflows.com/_/image/%2523default%2523VML/?inbox_flows_img_sig=eyJwYXRoIjoiJTIzZGVmYXVsdCUyM1ZNTCJ9:1kXND8:MFZpJ-slbVKM_6tncVPcrLCww0oBUVrO9i0KL-hwqCc); display:inline-block }
                .container-table {
                    width: 100%;
                }
            </style>
        <!<![endif]-->
  <!--[if (gte mso 9)|(IE)]>
            <style>
            .hide {
                display: none;
            }
            </style>
        <![endif]-->
 </head>
 <!-- Global container with background styles. Gmail converts BODY to DIV so we lose properties like BGCOLOR. -->
 <body style="
        padding:0px !important;
        margin:0px !important;
    ">
  <div class="hide" style="letter-spacing:596px;line-height:0;mso-hide:all">
  </div>
  <!-- Outermost Wrapper Table -->
  <table bgcolor="#EEEDF2" style="min-width:100%;" width="100%">
   <tr>
    <td>
     <table border="0" cellpadding="0" cellspacing="0" class="container-table" style="
        margin-left:auto;
        margin-right:auto;
    
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ">
      <tr>
       <!-- Centered 600px Email Table -->
       <td align="center" bgcolor="#EEEDF2" style="
        margin-left:auto;
        margin-right:auto;
    ">
        <table class="content" style="border: none;">
         <tr>
          <td align="center" bgcolor="#EEEDF2">
           <table bgcolor="#EEEDF2" border="0" cellpadding="0" cellspacing="0">
            <tbody>
             <!-- Body Section -->
             <tr class="row_divider-spacer">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-top">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0;border-bottom-left-radius:0;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#FFFFFF" class="row_section-article-content">
              <td bgcolor="#FFFFFF" class="grid__col" style="background-color:#FFFFFF;">
               <table align="left" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#FFFFFF" class="row_section" style="">
                 <td align="left" bgcolor="#FFFFFF" width="20">
                 </td>
                 <td align="left" class="" style="text-align:left;background-color:#FFFFFF;">
                  <table align="left" bgcolor="#FFFFFF" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                   <tr bgcolor="#FFFFFF" style="">
                    <td align="left" bgcolor="#FFFFFF" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <h2 class="" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 23px;
        line-height: 32px;
        font-weight: normal;
        font-weight: 500;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 0;">
                      Good news!
                     </h2>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;height:4px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      A registration for
                      <a style="
        text-decoration:none;color:#3F60E7;
    ">
                       Django developer conference
                      </a>
                      just came through.
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      Below, you'll find a copy of the registration confirmation email for:
                     </span>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      Raul Tavares
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                       rtavares@gmail.com
                      </a>
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                       Order #1240588819
                      </a>
                     </span>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      Thanks
                      <br/>
                      Eventbrite
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      P.S. You can turn off this notification any time on your
                      <a style="
        text-decoration:none;color:#3F60E7;
    ">
                       email preferences page
                      </a>
                      .
                     </span>
                    </td>
                   </tr>
                  </table>
                 </td>
                 <td bgcolor="#FFFFFF" width="20">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-bottom">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0px;border-bottom-left-radius:0px;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-spacer">
              <td height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;height:4px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-spacer">
              <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#EEEDF2" class="row_section-header-content">
              <td bgcolor="#EEEDF2" class="grid__col" style="background-color:#EEEDF2;">
               <table align="center" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#EEEDF2" class="row_section" style="">
                 <td align="center" bgcolor="#EEEDF2" width="30">
                 </td>
                 <td align="center" class="" style="text-align:center;background-color:#EEEDF2;">
                  <table align="center" bgcolor="#EEEDF2" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <div style="
        width: 140px;
        height: 25px;
        margin: 0 auto;
        text-align: center;
    ">
                      <img alt="Eventbrite" border="0" class="" height="25" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252Fde0b06%252Fdjango%252Fimages%252Femails_2018_rebrand%252FEB-logo%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="" title="" width="140"/>
                     </div>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <h1 class="h1-header" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 30px;
        line-height: 42px;
        font-weight: bold;
        font-weight: 800;
        letter-spacing: -0.2px;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1E0A3C; margin-top:0;">
                      Raul,
                      <br/>
                      you're good to go
                     </h1>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <img alt="Eventbrite" border="0" class="" height="115" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252F4c3492%252Fdjango%252Fimages%252Femails_2018_rebrand%252Fheader-icon%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="" title="" width="115"/>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                  </table>
                 </td>
                 <td bgcolor="#EEEDF2" width="30">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#EEEDF2" class="row_section-footer-content">
              <td bgcolor="#EEEDF2" class="grid__col" style="background-color:#EEEDF2;">
               <table align="center" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#EEEDF2" class="row_section" style="">
                 <td align="center" bgcolor="#EEEDF2" width="30">
                 </td>
                 <td align="center" class="" style="text-align:center;background-color:#EEEDF2;">
                  <table align="center" bgcolor="#EEEDF2" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    color:#1E0A3C;">
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <h1 class="h1-header" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 23px;
        line-height: 32px;
        font-weight: normal;
        font-weight: 500;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1E0A3C; margin-top:0; font-weight: bold;">
                      Keep your registration handy
                     </h1>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <!--[if (mso)|(ie)]>
    <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.eventbrite.com/eventbriteapp?utm_campaign=order_confirm&amp;utm_medium=email&amp;ref=eemailordconf&amp;app_cta_src=order_conf_email&amp;utm_source=eventbrite&amp;utm_term=downloadapp" style="height:40px;v-text-anchor:middle;width:225px;" arcsize="10%" strokeweight="1px" strokecolor="#f05537" fillcolor="#f05537">
        <w:anchorlock/>
        <center style="color:#FFFFFF;font-family:sans-serif;font-size:16px;font-weight:normal;">
            Get the app
        </center>
    </v:roundrect>
    <![endif]-->
                     <!--[if !((mso)|(ie))]><!-- -->
                     <div style="text-align:center;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     
        padding: 0;
    ">
                      <a class="btn" style="
                background-color:#f05537;
                color:#FFFFFF;
                border-color:#f05537;
                
        display: inline-block;
        line-height: 22px;
        font-weight: normal;
        font-weight: 500;
        font-size: 15px;
        text-align: center;
        text-decoration: none;
        padding: 8px 28px 12px;
        border-radius: 4px;
        border-style: solid;
        border-width: 2px;
    
                
            " target="_blank">
                       Get the app
                      </a>
                     </div>
                     <!--<![endif]-->
                    </td>
                   </tr>
                  </table>
                 </td>
                 <td bgcolor="#EEEDF2" width="30">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-spacer">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-top">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0;border-bottom-left-radius:0;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#FFFFFF" class="row_section-article-content">
              <td bgcolor="#FFFFFF" class="grid__col" style="background-color:#FFFFFF;">
               <table align="left" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#FFFFFF" class="row_section" style="">
                 <td align="left" bgcolor="#FFFFFF" width="20">
                 </td>
                 <td align="left" class="" style="text-align:left;background-color:#FFFFFF;">
                  <table align="left" bgcolor="#FFFFFF" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <h2 class="" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 23px;
        line-height: 32px;
        font-weight: normal;
        font-weight: 500;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 0;">
                      Django developer conference
                     </h2>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <img alt="Django developer conference" border="0" class="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.evbuc.com%252Fhttps%253A%252F%252Fcdn.evbuc.com%252Fimages%252F86389239%252F393051215881%252F1%252Foriginal.20200106-131043%253Fh%253D400%2526w%253D800%2526auto%253Dformat%252Ccompress%2526q%253D75%2526sharp%253D10%2526rect%253D88%252C0%252C1378%252C689%2526s%253De3a577f704185478e61a626207ed2b3a/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZXZidWMuYyJ9:1kXND8:LNN21N90s7F_CaE7ut_J_078scHrd4abWteEw1HsZJI" style="" title="Django developer conference" width="100%"/>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <table style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                      <tr class="row_section" style="">
                       <td style="vertical-align: top;" width="26">
                        <img alt="" border="0" class="" height="16" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252F3a25e5%252Fdjango%252Fimages%252Femails_2018_rebrand%252Fticket-icon%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="padding-top: 4px;" title="date" width="12"/>
                       </td>
                       <td style="">
                        <table>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     text-align:left;" width="100%">
                           <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 17px;
        line-height: 24px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:normal;">
                            1 x Registration
                           </span>
                          </td>
                         </tr>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     text-align:left;" width="100%">
                           <span class="no_text_resize" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                            Order total: Free
                           </span>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <table style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                      <tr class="row_section" style="">
                       <td style="vertical-align: top;" width="26">
                        <img alt="" border="0" class="" height="18" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252F17c084%252Fdjango%252Fimages%252Femails_2018_rebrand%252Fdate-icon%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="padding-top: 4px;" title="date" width="18"/>
                       </td>
                       <td style="">
                        <table>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     text-align:left;" width="100%">
                           <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 17px;
        line-height: 24px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:normal;text-decoration:none !important;cursor:text;">
                            Sunday, 16 February 2020 from 18:30 to 20:30 (GMT)
                           </span>
                          </td>
                         </tr>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     
        font-size: 15px;
        line-height: 21px;
    text-align:left;" width="100%">
                           <span class="no_text_resize" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                            Add to
                            <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                             Google
                            </a>
                            <span class="" style="font-weight:bold;">
                             ·
                            </span>
                            <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                             Outlook
                            </a>
                            <span class="" style="font-weight:bold;">
                             ·
                            </span>
                            <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                             iCal
                            </a>
                            <span class="" style="font-weight:bold;">
                             ·
                            </span>
                            <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                             Yahoo
                            </a>
                           </span>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <table style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                      <tr class="row_section" style="">
                       <td style="vertical-align: top;" width="26">
                        <img alt="" border="0" class="" height="16" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252F02618c%252Fdjango%252Fimages%252Femails_2018_rebrand%252FlocPin-icon%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="padding-top: 4px;" title="date" width="12"/>
                       </td>
                       <td style="">
                        <table>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     
        font-size: 15px;
        line-height: 21px;
    text-align:left;" width="100%">
                           <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 17px;
        line-height: 24px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:normal;">
                            Coca-Cola London Eye
                           </span>
                          </td>
                         </tr>
                         <tr bgcolor="white" style="">
                          <td align="left" bgcolor="white" class="" height="22px" style="
        padding: 0;
     
        font-size: 15px;
        line-height: 21px;
    text-align:left;" width="100%">
                           <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                            London Eye
                            <br/>
                            London SE1 7PB
                            <br/>
                            United Kingdom
                           </span>
                          </td>
                         </tr>
                         <tr>
                          <td height="22px" style="
        font-size: 15px;
        line-height: 21px;
    ">
                           <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                            (View on map)
                           </a>
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="center" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                      View event details
                     </a>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr class="row_divider-line">
                    <td height="1" style="mso-line-height-rule:exactly;line-height:1px;font-size:1px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="1" style="mso-line-height-rule:exactly;line-height:1px;font-size:1px;height:1px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="#E7E6EA" height="1" style="mso-line-height-rule:exactly;line-height:1px;font-size:1px;height:1px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="center" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:normal;">
                      Sarah Jonas 1337
                     </span>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="center" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <!--[if (mso)|(ie)]>
    <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="https://www.eventbrite.co.uk/o/sarah-jonas-1337-29073605535?utm_campaign=order_confirm&amp;utm_medium=email&amp;ref=eemailordconf&amp;utm_source=eventbrite&amp;utm_term=followorg" style="height:40px;v-text-anchor:middle;width:135px;" arcsize="10%" strokeweight="1px" strokecolor="#E7E6EA" fillcolor="#FFFFFF">
        <w:anchorlock/>
        <center style="color:#1E0A3C;font-family:sans-serif;font-size:16px;font-weight:normal;">
            Follow
        </center>
    </v:roundrect>
    <![endif]-->
                     <!--[if !((mso)|(ie))]><!-- -->
                     <div style="text-align:center;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     
        padding: 0;
    ">
                      <a class="btn" style="
                background-color:#FFFFFF;
                color:#1E0A3C;
                border-color:#E7E6EA;
                
        display: inline-block;
        line-height: 22px;
        font-weight: normal;
        font-weight: 500;
        font-size: 15px;
        text-align: center;
        text-decoration: none;
        padding: 8px 28px 12px;
        border-radius: 4px;
        border-style: solid;
        border-width: 2px;
    
                
            " target="_blank">
                       Follow
                      </a>
                     </div>
                     <!--<![endif]-->
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;" width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="center" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <h2 class="" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 17px;
        line-height: 23px;
        font-weight: normal;
        font-weight: 500;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 0;">
                      Questions about this event?
                     </h2>
                    </td>
                   </tr>
                   <tr class="row_divider-top">
                    <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;
    border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0;border-bottom-left-radius:0;
    " width="600">
                     <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                       </td>
                      </tr>
                      <tr bgcolor="#FFFFFF">
                       <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="center" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                       Contact the organiser
                      </a>
                     </span>
                    </td>
                   </tr>
                  </table>
                 </td>
                 <td bgcolor="#FFFFFF" width="20">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-bottom">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0px;border-bottom-left-radius:0px;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-spacer">
              <td height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;height:4px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-top">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0;border-bottom-left-radius:0;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#FFFFFF" class="row_section-article-content">
              <td bgcolor="#FFFFFF" class="grid__col" style="background-color:#FFFFFF;">
               <table align="left" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#FFFFFF" class="row_section" style="">
                 <td align="left" bgcolor="#FFFFFF" width="20">
                 </td>
                 <td align="left" class="" style="text-align:left;background-color:#FFFFFF;">
                  <table align="left" bgcolor="#FFFFFF" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="" style="
        padding: 0;
     text-align:left;" width="100%">
                     <table border="0" cellpadding="0" cellspacing="0" class="no_text_resize" style="border-spacing: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
                      <tr>
                       <td colspan="3">
                        <h2 class="" style="
        padding: 0;
        margin: 12px 0 0 0;
    
        font-size: 23px;
        line-height: 32px;
        font-weight: normal;
        font-weight: 500;
        color: #1E0A3C;
    
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 0;">
                         Order Summary
                        </h2>
                       </td>
                      </tr>
                      <tr class="row_divider-spacer">
                       <td height="6" style="mso-line-height-rule:exactly;line-height:6px;font-size:6px;background-color:#FFFFFF;" width="600">
                        <table cellpadding="0" cellspacing="0" height="6" style="mso-line-height-rule:exactly;line-height:6px;font-size:6px;height:6px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                         <tr>
                          <td bgcolor="" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;">
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td colspan="3">
                        <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287">
                         Order
                         <a class="" style="
        text-decoration:none;color:#3F60E7;
      
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                          #1240588819
                         </a>
                         - 1 February 2020
                        </span>
                       </td>
                      </tr>
                      <tr>
                       <td colspan="3">
                       </td>
                      </tr>
                      <tr class="row_divider-spacer">
                       <td height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;background-color:#FFFFFF;" width="600">
                        <table cellpadding="0" cellspacing="0" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                         <tr>
                          <td bgcolor="" height="16" style="mso-line-height-rule:exactly;line-height:16px;font-size:16px;height:16px;">
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                      <tr>
                       <td colspan="3">
                        <table border="0" cellpadding="0" cellspacing="0" width="100%">
                         <tbody>
                          <tr>
                           <td valign="top" width="25%">
                            <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                             Raul Tavares
                            </span>
                           </td>
                           <td valign="top" width="50%">
                            <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                             1 x
                            </span>
                            <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:600;">
                             General Admission
                            </span>
                           </td>
                           <td align="right" style="
        text-align: right;
    " valign="top" width="20%">
                            <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 15px;
        line-height: 21px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                             Free
                            </span>
                           </td>
                          </tr>
                          <tr class="row_divider-spacer">
                           <td height="6" style="mso-line-height-rule:exactly;line-height:6px;font-size:6px;background-color:#FFFFFF;" width="600">
                            <table cellpadding="0" cellspacing="0" height="6" style="mso-line-height-rule:exactly;line-height:6px;font-size:6px;height:6px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                             <tr>
                              <td bgcolor="" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;">
                              </td>
                             </tr>
                            </table>
                           </td>
                          </tr>
                         </tbody>
                        </table>
                       </td>
                      </tr>
                      <tr class="row_divider-spacer">
                       <td height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;background-color:#FFFFFF;" width="600">
                        <table cellpadding="0" cellspacing="0" height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;height:4px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                         <tr>
                          <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                          </td>
                         </tr>
                        </table>
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="26" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="no_text_resize" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:600;">
                      <a class="" style="
        text-decoration:none;color:#3F60E7;
     color:#3F60E7; 
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; font-weight: bold;">
                       View and manage
                      </a>
                      your order online
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="26" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="no_text_resize" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#1E0A3C;font-weight:600;">
                      Printable PDF tickets are attached to this email
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="white" style="">
                    <td align="left" bgcolor="white" class="" height="26" style="
        padding: 0;
     text-align:left;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#6F7287;font-weight:normal;">
                      This order is subject to Eventbrite
                      <a style="
        text-decoration:none;color:#3F60E7;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    ; font-weight:normal;" target="_blank">
                       Terms of Service
                      </a>
                      ,
                      <a style="
        text-decoration:none;color:#3F60E7;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    ; font-weight:normal;" target="_blank">
                       Privacy Policy
                      </a>
                      and
                      <a style="
        text-decoration:none;color:#3F60E7;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    ; font-weight:normal;" target="_blank">
                       Cookie Policy
                      </a>
                      .
                     </span>
                    </td>
                   </tr>
                  </table>
                 </td>
                 <td bgcolor="#FFFFFF" width="20">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-bottom">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#FFFFFF;
    border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0px;border-bottom-left-radius:0px;
    " width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr bgcolor="#FFFFFF">
                 <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
                <tr>
                 <td bgcolor="" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr class="row_divider-spacer">
              <td height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="4" style="mso-line-height-rule:exactly;line-height:4px;font-size:4px;height:4px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="8" style="mso-line-height-rule:exactly;line-height:8px;font-size:8px;height:8px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <script type="application/ld+json">
              {
            "@context": "//schema.org",
            "@type": "EventReservation",
            "reservationNumber": "1240588819",
            "reservationStatus": "//schema.org/Confirmed",
            "modifyReservationUrl": "https://www.eventbrite.co.uk/mytickets/1240588819?utm_campaign=order_confirm&amp;utm_medium=email&amp;ref=eemailordconf&amp;utm_source=eventbrite&amp;utm_term=googlenow",
            "underName": {
                "@type": "Person",
                "name": "Raul Tavares"
            },
            "reservationFor": {
                "@type": "Event",
                "name": "Django developer conference",
                    "startDate": "2020-02-16T18:30:00+00:00",
                    "endDate": "2020-02-16T20:30:00+00:00",
                    "location": {
                        "@type": "Place",
                        "name": "Coca-Cola London Eye",
                        "address": {
                            "@type": "PostalAddress",
                            "streetAddress": "London EyeLondon SE1 7PB",
                            "addressLocality": "London",
                            "addressRegion": "Greater London",
                            "postalCode": "SE1 7PB",
                            "addressCountry": "GB"
                        }
                    }
            }
        }
             </script>
             <!-- Footer Section-->
             <tr class="row_divider-spacer">
              <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
               <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                <tr>
                 <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
             <tr bgcolor="#EEEDF2" class="row_section-footer-content">
              <td bgcolor="#EEEDF2" class="grid__col" style="background-color:#EEEDF2;">
               <table align="center" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    ">
                <tr bgcolor="#EEEDF2" class="row_section" style="">
                 <td align="center" bgcolor="#EEEDF2" width="30">
                 </td>
                 <td align="center" class="" style="text-align:center;background-color:#EEEDF2;">
                  <table align="center" bgcolor="#EEEDF2" cellpadding="0" cellspacing="0" class="" style="
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
        width:100%;
    color:#1E0A3C;">
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <div style="
        width: 140px;
        height: 25px;
        margin: 0 auto;
        text-align: center;
    ">
                      <img alt="Eventbrite" border="0" class="" height="25" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252Fde0b06%252Fdjango%252Fimages%252Femails_2018_rebrand%252FEB-logo%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="" title="" width="140"/>
                     </div>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="12" style="mso-line-height-rule:exactly;line-height:12px;font-size:12px;height:12px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="24" style="mso-line-height-rule:exactly;line-height:24px;font-size:24px;height:24px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="" height="" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="social-logo-container" style="
        padding:0;
        display:inline-block;
        height:auto;
        margin:0;
        width:40px;
        text-align:center;
    ">
                      <a aria-label="Eventbrite's Twitter" target="_blank">
                       <img alt="twitter" border="0" class="footer-social-logo__image" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252Fc07442%252Fdjango%252Fimages%252Femails_2018_rebrand%252FTW-icon-purple%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="
        height:24px;
        padding:0;
        width:24px;
    " title="twitter" width="24"/>
                      </a>
                     </span>
                     <span class="social-logo-container" style="
        padding:0;
        display:inline-block;
        height:auto;
        margin:0;
        width:40px;
        text-align:center;
    ">
                      <a aria-label="Eventbrite Facebook" target="_blank">
                       <img alt="facebook" border="0" class="footer-social-logo__image" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252Fac2bf4%252Fdjango%252Fimages%252Femails_2018_rebrand%252FFB-icon-purple%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="
        height:24px;
        padding:0;
        width:24px;
    " title="facebook" width="24"/>
                      </a>
                     </span>
                     <span class="social-logo-container" style="
        padding:0;
        display:inline-block;
        height:auto;
        margin:0;
        width:40px;
        text-align:center;
    ">
                      <a aria-label="Eventbrite's Instagram" target="_blank">
                       <img alt="instagram" border="0" class="footer-social-logo__image" height="24" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn.evbstatic.com%252Fs3-build%252Fperm_001%252F009b0f%252Fdjango%252Fimages%252Femails_2018_rebrand%252FIG-icon-purple%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4uZXZic3RhdCJ9:1kXND8:eHx04K0Oqp9i7GWotX1mXuaoXzZEY0nn67Kvu-Hw6Ik" style="
        height:24px;
        padding:0;
        width:24px;
    " title="instagram" width="24"/>
                      </a>
                     </span>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="10" style="mso-line-height-rule:exactly;line-height:10px;font-size:10px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="10" style="mso-line-height-rule:exactly;line-height:10px;font-size:10px;height:10px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="20" style="mso-line-height-rule:exactly;line-height:20px;font-size:20px;height:20px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="footer-content" height="24" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#4B4D63;font-weight:normal;">
                      <span class="" style="">
                       This email was sent to
                       <a class="" style="
        text-decoration:none;color:#3F60E7;
     color:#f05537; 
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                        rtavares@gmail.com
                       </a>
                      </span>
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="footer-content" height="24" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#4B4D63;font-weight:normal;">
                      <a class="" style="
        text-decoration:none;color:#3F60E7;
     color:#f05537; 
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight:normal; ">
                       Eventbrite
                      </a>
                      | 10-11 Charterhouse Square | EC1M 6EE London
                     </span>
                    </td>
                   </tr>
                   <tr bgcolor="#EEEDF2" style="">
                    <td align="center" bgcolor="#EEEDF2" class="footer-content" height="24" style="
        padding: 0;
     text-align:center;" width="100%">
                     <span class="" style="
        font-weight: normal;
        margin: 4px 0;
      
        font-size: 12px;
        line-height: 18px;
     
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
     color:#4B4D63;font-weight:normal;">
                      Copyright © 2020 Eventbrite. All rights reserved.
                     </span>
                    </td>
                   </tr>
                   <tr class="row_divider-spacer">
                    <td height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;background-color:#EEEDF2;" width="600">
                     <table cellpadding="0" cellspacing="0" height="18" style="mso-line-height-rule:exactly;line-height:18px;font-size:18px;height:18px;
        border-collapse:collapse;
        border-spacing:0;
        mso-table-lspace:0pt;
        mso-table-rspace:0pt;
        border:0;
        padding:0;
    ;width:100%;">
                      <tr>
                       <td bgcolor="" height="36" style="mso-line-height-rule:exactly;line-height:36px;font-size:36px;height:36px;">
                       </td>
                      </tr>
                     </table>
                    </td>
                   </tr>
                   <img alt="" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fwww.eventbrite.com%252Femails%252Faction%252F%253Frecipient%253D7fdb9038%2540uifeed.com%2526type_id%253D65%2526type%253Dopen%2526send_id%253D2020-02-01%2526list_id%253D9/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZ3d3cuZXZlbnRiciJ9:1kXND8:EVEGh2cwHRYVlwx6Sd_l29LvJZId48plxSYYYP12Cjw" width="1"/>
                  </table>
                 </td>
                 <td bgcolor="#EEEDF2" width="30">
                 </td>
                </tr>
               </table>
              </td>
             </tr>
            </tbody>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
 </body>
</html>