Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 16.76 KB | None | 0 0
  1. <html lang=&quot;en&quot; xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot;
  2.      xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot;>
  3. <head>
  4.     <meta charset=&quot;utf-8&quot;> <!-- utf-8 works for most cases -->
  5.     <meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;> <!-- Forcing initial-scale shouldn't be necessary -->
  6.     <meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;> <!-- Use the latest (edge) version of IE rendering engine -->
  7.     <meta name=&quot;x-apple-disable-message-reformatting&quot;>  <!-- Disable auto-scale in iOS 10 Mail entirely -->
  8.     <title></title> <!-- The title tag shows in email notifications, like Android 4.4. -->
  9.  
  10.     <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  11.  
  12.     <!-- Web Font / @font-face : BEGIN -->
  13.     <!-- NOTE: If web fonts are not required, lines 10 - 27 can be safely removed. -->
  14.  
  15.     <!-- Desktop Outlook chokes on web font references and defaults to Times New Roman, so we force a safe fallback font. -->
  16.     <!--[if mso]>
  17.    <style>
  18.        * {
  19.            font-family: &quot;Roboto&quot;, sans-serif;
  20.            font-size: 13px;
  21.            color: rgb(52, 53, 53);
  22.            font-weight: 300;
  23.        }
  24.    </style>
  25.    <![endif]-->
  26.  
  27.     <!-- All other clients get the webfont reference; some will render the font and others will silently fail to the fallbacks. More on that here: http://stylecampaign.com/blog/2015/02/webfont-support-in-email/ -->
  28.     <!--[if !mso]><!-->
  29.     <!-- insert web font reference, eg: <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> -->
  30.     <!--<![endif]-->
  31.  
  32.     <!-- Web Font / @font-face : END -->
  33.     <!-- CSS Reset : BEGIN -->
  34.     <style>
  35.  
  36.         /* What it does: Remove spaces around the email design added by some email clients. */
  37.         /* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
  38.         html,
  39.         body {
  40.             font-family: &quot;Roboto&quot;, sans-serif;
  41.             font-size: 13px;
  42.             color: rgb(52, 53, 53);
  43.             font-weight: 300;
  44.             margin: 0 auto !important;
  45.             padding: 0 !important;            height: 100% !important;
  46.             width: 100% !important;
  47.         }
  48.  
  49.         /* What it does: Stops email clients resizing small text. */
  50.         * {
  51.             -ms-text-size-adjust: 100%;
  52.             -webkit-text-size-adjust: 100%;
  53.         }
  54.  
  55.         /* What it does: Centers email on Android 4.4 */
  56.         div[style*=&quot;margin: 16px 0&quot;] {
  57.             margin: 0 !important;
  58.         }
  59.  
  60.         /* What it does: Stops Outlook from adding extra spacing to tables. */
  61.         table,
  62.         td {
  63.             mso-table-lspace: 0pt !important;
  64.             mso-table-rspace: 0pt !important;
  65.         }
  66.  
  67.         /* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
  68.         table {
  69.             border-spacing: 0 !important;
  70.             border-collapse: collapse !important;
  71.             table-layout: fixed !important;
  72.             margin: 0 auto !important;
  73.         }
  74.  
  75.         table table table {
  76.             table-layout: auto;
  77.         }
  78.  
  79.         /* What it does: Prevents Windows 10 Mail from underlining links despite inline CSS. Styles for underlined links should be inline. */
  80.         a {
  81.             text-decoration: none;
  82.         }
  83.  
  84.         /* What it does: Uses a better rendering method when resizing images in IE. */
  85.         img {
  86.             -ms-interpolation-mode: bicubic;
  87.         }
  88.  
  89.         /* What it does: A work-around for email clients meddling in triggered links. */
  90.         *[x-apple-data-detectors], /* iOS */        .unstyle-auto-detected-links *,
  91.         .aBn {
  92.             border-bottom: 0 !important;
  93.             cursor: default !important;
  94.             color: inherit !important;
  95.             text-decoration: none !important;
  96.             font-size: inherit !important;
  97.             font-family: inherit !important;
  98.             font-weight: inherit !important;
  99.             line-height: inherit !important;
  100.         }
  101.  
  102.         /* What it does: Prevents Gmail from displaying a download button on large, non-linked images. */
  103.         .a6S {
  104.             display: none !important;            opacity: 0.01 !important;
  105.         }
  106.  
  107.         /* If the above doesn't work, add a .g-img class to any image in question. */
  108.         img.g-img + div {
  109.             display: none !important;
  110.         }        /* What it does: Removes right gutter in Gmail iOS app: https://github.com/TedGoas/Cerberus/issues/89  */
  111.         /* Create one of these media queries for each additional viewport size you'd like to fix */
  112.         /*!* iPhone 4, 4S, 5, 5S, 5C, and 5SE *!*/
  113.         /*@media  only screen and (min-device-width: 320px) and (max-device-width: 374px) {*/            /*.email-container {*/
  114.                 /*min-width: 320px !important;*/
  115.             /*}*/
  116.         /*}*/
  117.  
  118.         /*!* iPhone 6, 6S, 7, 8, and X *!*/
  119.         /*@media  only screen and (min-device-width: 375px) and (max-device-width: 413px) {*/
  120.             /*.email-container {*/
  121.                 /*min-width: 375px !important;*/
  122.             /*}*/
  123.         /*}*/
  124.  
  125.         /*!* iPhone 6+, 7+, and 8+ *!*/
  126.         /*@media  only screen and (min-device-width: 414px) {*/
  127.             /*.email-container {*/
  128.                 /*min-width: 414px !important;*/
  129.             /*}*/
  130.         /*}*/
  131.  
  132.     </style>
  133.     <!-- CSS Reset : END -->
  134.     <!-- Reset list spacing because Outlook ignores much of our inline CSS. -->
  135.     <!--[if mso]>
  136.    <style type=&quot;text/css&quot;>
  137.        ul,        ol {
  138.            margin: 0 !important;
  139.        }
  140.  
  141.        li {
  142.            margin-left: 30px !important;
  143.        }
  144.  
  145.        li.list-item-first {
  146.            margin-top: 0 !important;
  147.        }        li.list-item-last {
  148.            margin-bottom: 10px !important;
  149.        }
  150.    </style>
  151.    <![endif]-->
  152.  
  153.     <!-- Progressive Enhancements : BEGIN -->
  154.     <style>
  155.  
  156.         /* What it does: Hover styles for buttons */
  157.         .button-td,
  158.         .button-a {
  159.             transition: all 100ms ease-in;
  160.         }
  161.  
  162.         .button-td-primary:hover,
  163.         .button-a-primary:hover {
  164.             background: #555555 !important;
  165.             border-color: #555555 !important;
  166.         }
  167.  
  168.         /* Media Queries */
  169.         @media  screen and (max-width: 600px) {
  170.  
  171.             .email-container {
  172.                 width: 100% !important;
  173.                 margin: auto !important;
  174.             }            /* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */
  175.             .fluid {
  176.                 max-width: 100% !important;
  177.                 height: auto !important;
  178.                 margin-left: auto !important;
  179.                 margin-right: auto !important;
  180.             }
  181.  
  182.             /* What it does: Forces table cells into full-width rows. */
  183.             .stack-column,
  184.             .stack-column-center {
  185.                 display: block !important;
  186.                 width: 100% !important;
  187.                 max-width: 100% !important;
  188.                 direction: ltr !important;
  189.             }
  190.  
  191.             /* And center justify these ones. */
  192.             .stack-column-center {
  193.                 text-align: center !important;
  194.             }
  195.  
  196.             /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
  197.             .center-on-narrow {
  198.                 text-align: center !important;
  199.                 display: block !important;
  200.                 margin-left: auto !important;
  201.                 margin-right: auto !important;
  202.                 float: none !important;
  203.             }            table.center-on-narrow {
  204.                 display: inline-block !important;
  205.             }
  206.  
  207.             /*!* What it does: Adjust typography on small screens to improve readability *!*/
  208.             /*.email-container p {*/
  209.                 /*font-size: 17px !important;*/            /*}*/
  210.         }
  211.  
  212.     </style>
  213.  
  214.     <style type=&quot;text/css&quot;>
  215.         .table-bordered {
  216.             border-top: 3px solid #404A7B;
  217.             padding: 10px;
  218.             border-top-left-radius: 20px;
  219.             border-top-right-radius: 20px;
  220.         }
  221.     </style>
  222.     <!-- Progressive Enhancements : END -->
  223.  
  224.     <!-- What it does: Makes background images in 72ppi Outlook render at correct size. -->
  225.     <!--[if gte mso 9]>
  226.    <xml>
  227.        <o:OfficeDocumentSettings>
  228.            <o:AllowPNG/>
  229.            <o:PixelsPerInch>96</o:PixelsPerInch>
  230.        </o:OfficeDocumentSettings>
  231.    </xml>
  232.    <![endif]-->
  233. </head>
  234. <body width=&quot;100%&quot; style=&quot;margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #F5F5F5;&quot;>
  235. <center style=&quot;width: 100%; background-color: #F5F5F5;&quot;>
  236.     <!--[if mso | IE]>
  237.    <table role=&quot;presentation&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;
  238.           style=&quot;background-color: #F5F5F5;&quot;>
  239.        <tr>
  240.            <td>
  241.    <![endif]-->
  242.  
  243.     <!-- Email Body : BEGIN -->
  244.     <table align=&quot;center&quot; role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;600&quot;
  245.           style=&quot;margin: 0 auto;&quot; class=&quot;email-container&quot;>
  246.         <!-- Email Header : BEGIN -->
  247.         <tr>
  248.             <td style=&quot;padding: 25px 0 10px 0; text-align: center&quot;>
  249.                 <img src=&quot;api/v1/messages/_782BOnlNg1N02ng6PllBo7TuC2Y2tGR-8di--bXy6U=@mailhog.example/mime/part/2/download&quot; width=&quot;auto&quot; height=&quot;75&quot; style=&quot;max-height: 75px;&quot;>
  250.             </td>
  251.         </tr>
  252.         <!-- Email Header : END -->
  253.  
  254.         <!-- 1 Column Text + Button : BEGIN -->
  255.         <tr>
  256.             <td style=&quot;background-color: #ffffff;&quot;>
  257.                 <table role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; class=&quot;table-bordered&quot;
  258.                       width=&quot;100%&quot;>
  259.                     <tr>
  260.                        
  261.                         <td style=&quot;padding: 3% 8%&quot;>
  262.                        
  263.     <h4>Dokończ rejestrację Konta LIBRUS</h4>
  264.     Aby dokończyć proces zakładania Konta LIBRUS i je aktywować, kliknij w poniższy przycisk, który będzie ważny
  265.         przez 14 dni.
  266.     <br><br>
  267.  
  268.     <div style=&quot;text-align: center;&quot;><a href=&quot;http://portal.librus.local/rodzina/profile/activate/eyJpdiI6InByMjZyK1JnUXF4NllkaElmY0ZTUHc9PSIsInZhbHVlIjoidktzVGNualwvVlNNZWx3aXhGb0dVSjlpejB4ZFJwS1ROMVQyYmx5YXljQzVGd3NRdjE1VFRxV3RrakdkU3RuZEwiLCJtYWMiOiJjM2YyMWRhZWY3NzY0MDAwNDIzOTViOTZiMzc1MzdhMWNmODFiYmQ4YTc5YzA5MTI4Y2UxZmZhNmQyZDRkYTI5In0=&quot; style=&quot;color: #fff;
  269.    background-color: #028ae1;
  270.    display: inline-block;
  271.    font-weight: 400;
  272.    text-align: center;
  273.    vertical-align: middle;
  274.    -webkit-user-select: none;
  275.    -moz-user-select: none;    -ms-user-select: none;
  276.    user-select: none;
  277.    border: 1px solid #028ae1;
  278.    padding: 15px 50px;
  279.    line-height: 1.6;
  280.    max-width: 100%;
  281.    text-transform: uppercase&quot;>
  282.             Aktywuj konto Librus</a></div>
  283.  
  284.     <br>
  285.     <br>
  286.     Wysłaliśmy do Ciebie tę wiadomość, ponieważ Twój adres e-mail został podany przy rejestracji Konta LIBRUS na
  287.         portalu Librus Rodzina dostępnym pod adresem rodzina.librus.pl.
  288.  
  289.                         </td>
  290.                     </tr>
  291.                 </table>
  292.             </td>
  293.         </tr>
  294.         <!-- 1 Column Text + Button : END -->        <!-- Clear Spacer : BEGIN -->
  295.  
  296.                     <tr>
  297.     <td aria-hidden=&quot;true&quot; height=&quot;20&quot; style=&quot;font-size: 0; line-height: 0;&quot;>
  298.         &amp;nbsp;
  299.     </td>
  300. </tr>
  301.  
  302. <tr>
  303.     <td style=&quot;background-color: #ffffff;&quot;>
  304.         <table role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;>
  305.             <tr>                <td style=&quot;padding: 3% 8%&quot;>
  306.                     <h4>Dbamy o Twoją prywatność</h4>
  307.                                                                                             Jeżeli w ciągu 14 dni od daty rejestracji nie aktywujesz swojego Konta LIBRUS, dane
  308.                             podane przez Ciebie w formularzu rejestracyjnym zostaną przez nas usunięte. Jeżeli to
  309.                             nie Ty rozpocząłeś proces zakładania Konta LIBRUS, zignoruj tę wiadomość i nie martw się
  310.                             – Twój adres e-mail zostanie automatycznie usunięty z naszej bazy danych.
  311.                                     </td>
  312.             </tr>
  313.         </table>
  314.     </td>
  315. </tr>
  316.                     <tr>
  317.     <td aria-hidden=&quot;true&quot; height=&quot;20&quot; style=&quot;font-size: 0; line-height: 0;&quot;>
  318.         &amp;nbsp;
  319.     </td>
  320. </tr>
  321. <tr>
  322.     <td style=&quot;background-color: #ffffff;&quot;>
  323.         <table role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;>
  324.             <tr>
  325.                 <td style=&quot;padding: 3% 8%&quot;>
  326.                     <h4>Dokumenty i informacje</h4>
  327.                     Udostępniamy <a href=&quot;http://portal.librus.local/rodzina/regulamin&quot;>Regulamin</a>
  328.                     korzystania z Konta LIBRUS i usług dodatkowych.<br>
  329.                     Możesz również zapoznać się z naszą <a href=&quot;https://librus.pl/artykuly/polityka-prywatnosci&quot;>
  330.                         Polityką Prywatności</a>.
  331.                     <br><br>
  332.                     Pod <a href=&quot;https://konto.librus.pl&quot; target=&quot;_blank&quot;>tym linkiem</a> uzyskasz aktualne informacje
  333.                     na temat
  334.                     Konta LIBRUS.
  335.                                         <br><br>
  336.  
  337.                     Potrzebujesz wsparcia - <a href=&quot;https://konto.librus.pl/pomoc&quot; target=&quot;_blank&quot;>przejdź do działu
  338.                         Pomoc.</a>
  339.  
  340.                     <br><br>
  341.  
  342.                                     </td>
  343.             </tr>
  344.         </table>
  345.     </td>
  346. </tr>
  347.  
  348.        
  349.         <tr>
  350.             <td style=&quot;background-color: #ffffff;&quot;>
  351.                 <table role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;100%&quot;>
  352.                     <tr>
  353.                         <td style=&quot;padding: 3% 8%; text-align: right&quot;>
  354.                                 Pozdrawiamy,<br>Zespół Librus
  355.                         </td>
  356.                     </tr>
  357.                 </table>
  358.             </td>
  359.         </tr>
  360.     </table>
  361.     <!-- Email Body : END -->
  362.  
  363.     <!-- Email Footer : BEGIN -->
  364.     <table align=&quot;center&quot; role=&quot;presentation&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; width=&quot;600&quot;
  365.           style=&quot;margin: 0 auto&quot; class=&quot;email-container&quot;>
  366.         <tr style=&quot;text-align: center;&quot;>
  367.             <td style=&quot;padding: 30px 0 15px 0; line-height: 15px; text-align: center; color: #888888;&quot;>
  368.                 <img src=&quot;api/v1/messages/_782BOnlNg1N02ng6PllBo7TuC2Y2tGR-8di--bXy6U=@mailhog.example/mime/part/3/download&quot;
  369.                     style=&quot;filter: grayscale(100%); opacity: 0.7; max-height: 35px&quot; width=&quot;auto&quot; height=&quot;35&quot;>
  370.             </td>
  371.         </tr>
  372.         <tr style=&quot;text-align: justify&quot;>
  373.             <td style=&quot;padding: 0 75px; font-size: 10px; line-height: 15px; color: #888888;&quot;>
  374.                 <span>Librus Spółka z ograniczoną odpowiedzialnością Spółka komandytowa, al. Korfantego 193, 40-153
  375.                     Katowice,
  376.                     KRS: 0000630561, NIP: 6342622989, REGON: 240547379, Sąd Rejonowy Katowice-Wschód w Katowicach, VIII
  377.                     Wydział Gospodarczy Krajowego Rejestru Sądowego</span>
  378.             </td>
  379.         </tr>
  380.         <tr style=&quot;text-align: center&quot;>
  381.             <td style=&quot;padding: 0 75px; font-size: 10px; line-height: 15px; color: #888888;&quot;>
  382.                 <hr style=&quot;margin: 20px;&quot;>
  383.                 <span style=&quot;margin-bottom: 15px;&quot;>Wiadomość wysłana automatycznie - prosimy na nią nie odpowiadać.</span>
  384.             </td>
  385.         </tr>
  386.     </table>
  387.     <!-- Email Footer : END -->
  388.     <!--[if mso | IE]>
  389.    </td>
  390.    </tr>
  391.    </table>
  392.    <![endif]-->
  393. </center>
  394. </body>
  395. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement