lesli_mailer 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/Rakefile +5 -0
 - data/app/assets/config/lesli_mailer_manifest.js +1 -0
 - data/app/assets/images/lesli_mailer/mailer-logo.svg +7 -0
 - data/app/assets/stylesheets/lesli_mailer/application.css +15 -0
 - data/app/controllers/lesli_mailer/accounts_controller.rb +60 -0
 - data/app/controllers/lesli_mailer/application_controller.rb +4 -0
 - data/app/controllers/lesli_mailer/dashboards_controller.rb +4 -0
 - data/app/helpers/lesli_mailer/accounts_helper.rb +4 -0
 - data/app/helpers/lesli_mailer/application_helper.rb +4 -0
 - data/app/helpers/lesli_mailer/dashboards_helper.rb +4 -0
 - data/app/jobs/lesli_mailer/application_job.rb +4 -0
 - data/app/mailers/lesli_mailer/application_mailer.rb +6 -0
 - data/app/models/lesli_mailer/account.rb +12 -0
 - data/app/models/lesli_mailer/application_record.rb +5 -0
 - data/app/models/lesli_mailer/dashboard.rb +8 -0
 - data/app/views/lesli_mailer/accounts/_account.html.erb +2 -0
 - data/app/views/lesli_mailer/accounts/_form.html.erb +17 -0
 - data/app/views/lesli_mailer/accounts/edit.html.erb +10 -0
 - data/app/views/lesli_mailer/accounts/index.html.erb +14 -0
 - data/app/views/lesli_mailer/accounts/new.html.erb +9 -0
 - data/app/views/lesli_mailer/accounts/show.html.erb +10 -0
 - data/app/views/lesli_mailer/dashboards/_dashboard.html.erb +2 -0
 - data/app/views/lesli_mailer/dashboards/_form.html.erb +17 -0
 - data/app/views/lesli_mailer/dashboards/edit.html.erb +10 -0
 - data/app/views/lesli_mailer/dashboards/index.html.erb +14 -0
 - data/app/views/lesli_mailer/dashboards/new.html.erb +9 -0
 - data/app/views/lesli_mailer/dashboards/show.html.erb +1 -0
 - data/app/views/lesli_mailer/emails/lesli/devise/confirmation_instructions.html.erb +122 -0
 - data/app/views/lesli_mailer/emails/lesli/devise/reset_password_instructions.html.erb +122 -0
 - data/app/views/lesli_mailer/emails/lesli/devise/welcome.html.erb +122 -0
 - data/config/routes.rb +3 -0
 - data/db/migrate/0205000110_create_lesli_mailer_accounts.rb +5 -0
 - data/db/migrate/0205003010_create_lesli_mailer_dashboards.rb +5 -0
 - data/lib/lesli_mailer/engine.rb +57 -0
 - data/lib/lesli_mailer/version.rb +4 -0
 - data/lib/lesli_mailer.rb +6 -0
 - data/lib/lesli_mailer_builder/lesli/appstore.mjml +64 -0
 - data/lib/lesli_mailer_builder/lesli/copy.mjml +43 -0
 - data/lib/lesli_mailer_builder/lesli/debug.mjml +46 -0
 - data/lib/lesli_mailer_builder/lesli/devise/confirmation_instructions.mjml +70 -0
 - data/lib/lesli_mailer_builder/lesli/devise/reset_password_instructions.mjml +74 -0
 - data/lib/lesli_mailer_builder/lesli/devise/welcome.mjml +79 -0
 - data/lib/lesli_mailer_builder/lesli/footer.mjml +41 -0
 - data/lib/lesli_mailer_builder/lesli/head.mjml +53 -0
 - data/lib/lesli_mailer_builder/lesli/header.mjml +37 -0
 - data/lib/lesli_mailer_builder/lesli/logo.mjml +48 -0
 - data/lib/lesli_mailer_builder/lesli/social.mjml +50 -0
 - data/lib/lesli_mailer_emails/lesli/devise/confirmation_instructions.html +122 -0
 - data/lib/lesli_mailer_emails/lesli/devise/reset_password_instructions.html +122 -0
 - data/lib/lesli_mailer_emails/lesli/devise/welcome.html +122 -0
 - data/lib/lesli_mailer_previews/devise_mailer_preview.rb +54 -0
 - data/lib/tasks/lesli_mailer_tasks.rake +4 -0
 - data/license +674 -0
 - data/readme.md +83 -0
 - metadata +114 -0
 
| 
         @@ -0,0 +1,53 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 2 
     | 
    
         
            +
            Lesli
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 14 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 22 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 25 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 26 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 29 
     | 
    
         
            +
            // · 
         
     | 
| 
      
 30 
     | 
    
         
            +
            -->
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 34 
     | 
    
         
            +
                Head of the email.  
         
     | 
| 
      
 35 
     | 
    
         
            +
                Define CSS classes and styles
         
     | 
| 
      
 36 
     | 
    
         
            +
            -->
         
     | 
| 
      
 37 
     | 
    
         
            +
            <mj-head>
         
     | 
| 
      
 38 
     | 
    
         
            +
                <mj-attributes>
         
     | 
| 
      
 39 
     | 
    
         
            +
                    <mj-class name="lesli.body" background-color="#ebecf0" />
         
     | 
| 
      
 40 
     | 
    
         
            +
                    <mj-class name="lesli.content" background-color="#ffffff" border-radius="15px" padding="40px" max-width="60px" box-shadow="rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;"/> 
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                    <mj-class name="lesli.title" align="center" color="#4a5056" padding="0px" />
         
     | 
| 
      
 43 
     | 
    
         
            +
                    <mj-class name="lesli.text" font-size="16px" color="#4a5056" line-height="1.2" />
         
     | 
| 
      
 44 
     | 
    
         
            +
                    <mj-class name="lesli.separator" height="2px" container-background-color="#DBDBDB" />
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    <mj-class name="lesli.button-success" color="#23D160" background-color="#EFFAF3" border="1px solid #23D160" border-radius="5px" font-size="16px"/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <mj-class name="lesli.button-info"    color="#209cee" background-color="#eef6fc" border="1px solid #209cee" border-radius="5px" font-size="16px"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                    <mj-class name="width-600" width="400" />
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <mj-class name="font-18" font-size="18px" />
         
     | 
| 
      
 51 
     | 
    
         
            +
                    <mj-class name="font-14" font-size="14px" />
         
     | 
| 
      
 52 
     | 
    
         
            +
                </mj-attributes>
         
     | 
| 
      
 53 
     | 
    
         
            +
            </mj-head>
         
     | 
| 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 2 
     | 
    
         
            +
            Lesli
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 14 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 22 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 25 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 26 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 29 
     | 
    
         
            +
            // · 
         
     | 
| 
      
 30 
     | 
    
         
            +
            -->
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 34 
     | 
    
         
            +
                Lesli header
         
     | 
| 
      
 35 
     | 
    
         
            +
            -->
         
     | 
| 
      
 36 
     | 
    
         
            +
            <mj-include path="logo.mjml" />
         
     | 
| 
      
 37 
     | 
    
         
            +
            <mj-spacer height="5px" />
         
     | 
| 
         @@ -0,0 +1,48 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 2 
     | 
    
         
            +
            Lesli
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 14 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 22 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 25 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 26 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 29 
     | 
    
         
            +
            // · 
         
     | 
| 
      
 30 
     | 
    
         
            +
            -->
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 34 
     | 
    
         
            +
                Lesli logo
         
     | 
| 
      
 35 
     | 
    
         
            +
            -->
         
     | 
| 
      
 36 
     | 
    
         
            +
            <mj-section>
         
     | 
| 
      
 37 
     | 
    
         
            +
                <mj-column>
         
     | 
| 
      
 38 
     | 
    
         
            +
                    <mj-image 
         
     | 
| 
      
 39 
     | 
    
         
            +
                        align="center"
         
     | 
| 
      
 40 
     | 
    
         
            +
                        width="125px"
         
     | 
| 
      
 41 
     | 
    
         
            +
                        padding="0px"
         
     | 
| 
      
 42 
     | 
    
         
            +
                        padding-top="60px"
         
     | 
| 
      
 43 
     | 
    
         
            +
                        padding-left="5px"
         
     | 
| 
      
 44 
     | 
    
         
            +
                        padding-bottom="0px"
         
     | 
| 
      
 45 
     | 
    
         
            +
                        src="https://cdn.lesli.tech/leslicloud/brand/app-logo.png" 
         
     | 
| 
      
 46 
     | 
    
         
            +
                    />
         
     | 
| 
      
 47 
     | 
    
         
            +
                </mj-column>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </mj-section>
         
     | 
| 
         @@ -0,0 +1,50 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 2 
     | 
    
         
            +
            Lesli
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 7 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 8 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 9 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 12 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 13 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 14 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 17 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 22 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 25 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 26 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 29 
     | 
    
         
            +
            // · 
         
     | 
| 
      
 30 
     | 
    
         
            +
            -->
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            <!--
         
     | 
| 
      
 34 
     | 
    
         
            +
                Links to social media
         
     | 
| 
      
 35 
     | 
    
         
            +
            -->
         
     | 
| 
      
 36 
     | 
    
         
            +
            <mj-section>
         
     | 
| 
      
 37 
     | 
    
         
            +
                <mj-column>
         
     | 
| 
      
 38 
     | 
    
         
            +
                    <mj-text align="center" font-size="18px" font-weight="600" color="#444444">
         
     | 
| 
      
 39 
     | 
    
         
            +
                        ¡Siguenos!
         
     | 
| 
      
 40 
     | 
    
         
            +
                    </mj-text>
         
     | 
| 
      
 41 
     | 
    
         
            +
                    <mj-table align="center" width="300px">
         
     | 
| 
      
 42 
     | 
    
         
            +
                        <tr>
         
     | 
| 
      
 43 
     | 
    
         
            +
                            <td align="center"><img width="45px" alt="Facebook" src="https://cdn.lesli.tech/leslicloud/emails/social-facebook.png" /></td>
         
     | 
| 
      
 44 
     | 
    
         
            +
                            <td align="center"><img width="45px" alt="Twitter" src="https://cdn.lesli.tech/leslicloud/emails/social-twitter.png" /></td>
         
     | 
| 
      
 45 
     | 
    
         
            +
                            <td align="center"><img width="45px" alt="Instagram" src="https://cdn.lesli.tech/leslicloud/emails/social-instagram.png" /></td>
         
     | 
| 
      
 46 
     | 
    
         
            +
                            <td align="center"><img width="45px" alt="Linkedin" src="https://cdn.lesli.tech/leslicloud/emails/social-linkedin.png" /></td>
         
     | 
| 
      
 47 
     | 
    
         
            +
                        </tr>
         
     | 
| 
      
 48 
     | 
    
         
            +
                    </mj-table>
         
     | 
| 
      
 49 
     | 
    
         
            +
                </mj-column>
         
     | 
| 
      
 50 
     | 
    
         
            +
            </mj-section>
         
     | 
| 
         @@ -0,0 +1,122 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!doctype html><html lang="und" dir="auto" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"><head><title></title><!--[if !mso]><!--><meta http-equiv="X-UA-Compatible" content="IE=edge"><!--<![endif]--><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if mso]>
         
     | 
| 
      
 2 
     | 
    
         
            +
                <noscript>
         
     | 
| 
      
 3 
     | 
    
         
            +
                <xml>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <o:OfficeDocumentSettings>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <o:AllowPNG/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <o:PixelsPerInch>96</o:PixelsPerInch>
         
     | 
| 
      
 7 
     | 
    
         
            +
                </o:OfficeDocumentSettings>
         
     | 
| 
      
 8 
     | 
    
         
            +
                </xml>
         
     | 
| 
      
 9 
     | 
    
         
            +
                </noscript>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <![endif]--><!--[if lte mso 11]>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <style type="text/css">
         
     | 
| 
      
 12 
     | 
    
         
            +
                  .mj-outlook-group-fix { width:100% !important; }
         
     | 
| 
      
 13 
     | 
    
         
            +
                </style>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <![endif]--><!--[if !mso]><!--><!--<![endif]--></head><body style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; background-color: #ebecf0; margin: 0; padding: 0; word-spacing: normal;"><div style="background-color:#ebecf0;" lang="und" dir="auto"><!-- Email header --><!-- Lesli
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 19 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 20 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 21 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 24 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 25 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 26 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 29 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 34 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 37 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 38 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 41 
     | 
    
         
            +
            // · --><!-- Lesli header --><!-- Lesli
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 46 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 47 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 48 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 51 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 52 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 53 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 56 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 61 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 64 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 65 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 68 
     | 
    
         
            +
            // · --><!-- Lesli logo --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px; padding-left: 5px; padding-top: 60px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 125px;"><img alt src="https://cdn.lesli.tech/leslicloud/brand/app-logo.png" style="-ms-interpolation-mode: bicubic; border: 0; display: block; font-size: 13px; height: auto; line-height: 100%; outline: none; text-decoration: none; width: 100%;" width="125" height="auto"></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--><div style="height:5px;line-height:5px;"> </div><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#4a5056;"><h1>Welcome to Lesli</h1></div><!-- Email content --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="background:#ffffff;background-color:#ffffff;margin:0px auto;border-radius:15px;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #ffffff; background-color: #ffffff; border-collapse: collapse; border-radius: 15px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 40px; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:520px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="left" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.2;text-align:left;color:#4a5056;">Please take a moment to validate your email address so that we know it's you.</div></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:10px;line-height:10px;"> </div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: separate; line-height: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td align="center" bgcolor="#eef6fc" role="presentation" style="background: #eef6fc; border: 1px solid #209cee; border-collapse: collapse; border-radius: 5px; cursor: auto; mso-padding-alt: 10px 25px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle"><a href="<%= @params[:url] %>" style="display:inline-block;background:#eef6fc;color:#209cee;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank">Confirm my account</a></td></tr></tbody></table></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:20px;line-height:20px;"> </div></td></tr><tr><td style="background: #95a3ab; border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:1px;line-height:1px;"> </div></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:20px;line-height:20px;"> </div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.2;text-align:center;color:#4a5056;">Please keep in mind that this link is valid for only 3 hours.</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--> <!-- Email footer --><!-- Lesli
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 73 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 74 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 75 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 78 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 79 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 80 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 83 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 88 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 91 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 92 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 95 
     | 
    
         
            +
            // · --><!-- Lesli footer --><!-- <mj-spacer height="30px" /> --><!-- <mj-include path="social.mjml" /> --><!-- <mj-include path="appstore.mjml" /> --><!-- <mj-spacer height="10px" /> --><!-- Lesli
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 100 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 101 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 102 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 105 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 106 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 107 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 110 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 115 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 118 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 119 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 122 
     | 
    
         
            +
            // · --><!-- Copyright --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Copyright © 2025 Lesli</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Guatemala.</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">All rights reserved.</div></td></tr><!-- <mj-text align="center" color="#666666" padding="4px" padding-top="20px">The Lesli Team</mj-text> --></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></body></html>
         
     | 
| 
         @@ -0,0 +1,122 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!doctype html><html lang="und" dir="auto" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"><head><title></title><!--[if !mso]><!--><meta http-equiv="X-UA-Compatible" content="IE=edge"><!--<![endif]--><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if mso]>
         
     | 
| 
      
 2 
     | 
    
         
            +
                <noscript>
         
     | 
| 
      
 3 
     | 
    
         
            +
                <xml>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <o:OfficeDocumentSettings>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <o:AllowPNG/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <o:PixelsPerInch>96</o:PixelsPerInch>
         
     | 
| 
      
 7 
     | 
    
         
            +
                </o:OfficeDocumentSettings>
         
     | 
| 
      
 8 
     | 
    
         
            +
                </xml>
         
     | 
| 
      
 9 
     | 
    
         
            +
                </noscript>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <![endif]--><!--[if lte mso 11]>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <style type="text/css">
         
     | 
| 
      
 12 
     | 
    
         
            +
                  .mj-outlook-group-fix { width:100% !important; }
         
     | 
| 
      
 13 
     | 
    
         
            +
                </style>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <![endif]--><!--[if !mso]><!--><!--<![endif]--></head><body style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; background-color: #ebecf0; margin: 0; padding: 0; word-spacing: normal;"><div style="background-color:#ebecf0;" lang="und" dir="auto"><!-- Email header --><!-- Lesli
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 19 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 20 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 21 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 24 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 25 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 26 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 29 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 34 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 37 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 38 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 41 
     | 
    
         
            +
            // · --><!-- Lesli header --><!-- Lesli
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 46 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 47 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 48 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 51 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 52 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 53 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 56 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 61 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 64 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 65 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 68 
     | 
    
         
            +
            // · --><!-- Lesli logo --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px; padding-left: 5px; padding-top: 60px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 125px;"><img alt src="https://cdn.lesli.tech/leslicloud/brand/app-logo.png" style="-ms-interpolation-mode: bicubic; border: 0; display: block; font-size: 13px; height: auto; line-height: 100%; outline: none; text-decoration: none; width: 100%;" width="125" height="auto"></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--><div style="height:5px;line-height:5px;"> </div><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#4a5056;"><h1>Hello <%= @params[:full_name] %></h1></div><!-- Email content --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="background:#ffffff;background-color:#ffffff;margin:0px auto;border-radius:15px;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #ffffff; background-color: #ffffff; border-collapse: collapse; border-radius: 15px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 40px; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:520px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="left" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.2;text-align:left;color:#4a5056;">We've received a request to reset your password.</div></td></tr><tr><td align="left" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:16px;line-height:1.2;text-align:left;color:#4a5056;">If you didn't make the request, please ignore this message. Otherwise, you can reset your password using this link:</div></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:10px;line-height:10px;"> </div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: separate; line-height: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td align="center" bgcolor="#eef6fc" role="presentation" style="background: #eef6fc; border: 1px solid #209cee; border-collapse: collapse; border-radius: 5px; cursor: auto; mso-padding-alt: 10px 25px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle"><a href="<%= @params[:url] %>" style="display:inline-block;background:#eef6fc;color:#209cee;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank">Click here to reset password</a></td></tr></tbody></table></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:20px;line-height:20px;"> </div></td></tr><tr><td style="background: #95a3ab; border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:1px;line-height:1px;"> </div></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:20px;line-height:20px;"> </div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:14px;line-height:1.2;text-align:center;color:#4a5056;">Please keep in mind that this link is valid for only 3 hours.</div></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--> <!-- Email footer --><!-- Lesli
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 73 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 74 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 75 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 78 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 79 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 80 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 83 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 88 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 91 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 92 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 95 
     | 
    
         
            +
            // · --><!-- Lesli footer --><!-- <mj-spacer height="30px" /> --><!-- <mj-include path="social.mjml" /> --><!-- <mj-include path="appstore.mjml" /> --><!-- <mj-spacer height="10px" /> --><!-- Lesli
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 100 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 101 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 102 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 105 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 106 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 107 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 110 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 115 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 118 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 119 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 122 
     | 
    
         
            +
            // · --><!-- Copyright --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Copyright © 2025 Lesli</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Guatemala.</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">All rights reserved.</div></td></tr><!-- <mj-text align="center" color="#666666" padding="4px" padding-top="20px">The Lesli Team</mj-text> --></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></body></html>
         
     | 
| 
         @@ -0,0 +1,122 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <!doctype html><html lang="und" dir="auto" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office"><head><title></title><!--[if !mso]><!--><meta http-equiv="X-UA-Compatible" content="IE=edge"><!--<![endif]--><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if mso]>
         
     | 
| 
      
 2 
     | 
    
         
            +
                <noscript>
         
     | 
| 
      
 3 
     | 
    
         
            +
                <xml>
         
     | 
| 
      
 4 
     | 
    
         
            +
                <o:OfficeDocumentSettings>
         
     | 
| 
      
 5 
     | 
    
         
            +
                  <o:AllowPNG/>
         
     | 
| 
      
 6 
     | 
    
         
            +
                  <o:PixelsPerInch>96</o:PixelsPerInch>
         
     | 
| 
      
 7 
     | 
    
         
            +
                </o:OfficeDocumentSettings>
         
     | 
| 
      
 8 
     | 
    
         
            +
                </xml>
         
     | 
| 
      
 9 
     | 
    
         
            +
                </noscript>
         
     | 
| 
      
 10 
     | 
    
         
            +
                <![endif]--><!--[if lte mso 11]>
         
     | 
| 
      
 11 
     | 
    
         
            +
                <style type="text/css">
         
     | 
| 
      
 12 
     | 
    
         
            +
                  .mj-outlook-group-fix { width:100% !important; }
         
     | 
| 
      
 13 
     | 
    
         
            +
                </style>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <![endif]--><!--[if !mso]><!--><!--<![endif]--></head><body style="-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; background-color: #ebecf0; margin: 0; padding: 0; word-spacing: normal;"><div style="background-color:#ebecf0;" lang="und" dir="auto"><!-- Email header --><!-- Lesli
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 19 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 20 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 21 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 24 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 25 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 26 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 29 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 34 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 37 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 38 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 41 
     | 
    
         
            +
            // · --><!-- Lesli header --><!-- Lesli
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 46 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 47 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 48 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 51 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 52 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 53 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 56 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 61 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 64 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 65 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 68 
     | 
    
         
            +
            // · --><!-- Lesli logo --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; padding-bottom: 0px; padding-left: 5px; padding-top: 60px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 125px;"><img alt src="https://cdn.lesli.tech/leslicloud/brand/app-logo.png" style="-ms-interpolation-mode: bicubic; border: 0; display: block; font-size: 13px; height: auto; line-height: 100%; outline: none; text-decoration: none; width: 100%;" width="125" height="auto"></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--><div style="height:5px;line-height:5px;"> </div><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#4a5056;"><h1>Welcome to The Lesli Family!</h1></div><!-- Email content --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" bgcolor="#ffffff" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="background:#ffffff;background-color:#ffffff;margin:0px auto;border-radius:15px;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #ffffff; background-color: #ffffff; border-collapse: collapse; border-radius: 15px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 40px; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:520px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 90px;"><img alt src="https://cdn.lesli.tech/leslicloud/emails/celebration.png" style="-ms-interpolation-mode: bicubic; border: 0; display: block; font-size: 13px; height: auto; line-height: 100%; outline: none; text-decoration: none; width: 100%;" width="90" height="auto"></td></tr></tbody></table></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#4a5056;"><h2><raw><% name = @params.dig(:user).full_name %></raw><raw><%= !name.blank? ? "Hi #{name.strip}." : nil %></raw></h2></div></td></tr><tr><td style="background: #95a3ab; border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:2px;line-height:2px;"> </div></td></tr><tr><td style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; word-break: break-word;"><div style="height:5px;line-height:5px;"> </div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:18px;line-height:1.2;text-align:center;color:#4a5056;"><p style="display: block; margin: 13px 0;">Lesli will help you work with your team on your ideas, projects, and business.</p><p style="display: block; margin: 13px 0;">We're excited to have you on board!</p></div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 25px; word-break: break-word;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: separate; line-height: 100%; mso-table-lspace: 0pt; mso-table-rspace: 0pt;"><tbody><tr><td align="center" bgcolor="#eef6fc" role="presentation" style="background: #eef6fc; border: 1px solid #209cee; border-collapse: collapse; border-radius: 5px; cursor: auto; mso-padding-alt: 10px 25px; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle"><a href="<%= @app[:host] %>" style="display:inline-block;background:#eef6fc;color:#209cee;font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:17px;font-weight:normal;line-height:120%;margin:0;text-decoration:none;text-transform:none;padding:10px 25px;mso-padding-alt:0px;border-radius:5px;" target="_blank">Go to your Lesli account</a></td></tr></tbody></table></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--> <!-- Email footer --><!-- Lesli
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 73 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 74 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 75 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 78 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 79 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 80 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 83 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
      
 85 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 88 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 89 
     | 
    
         
            +
             
     | 
| 
      
 90 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 91 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 92 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 95 
     | 
    
         
            +
            // · --><!-- Lesli footer --><!-- <mj-spacer height="30px" /> --><!-- <mj-include path="social.mjml" /> --><!-- <mj-include path="appstore.mjml" /> --><!-- <mj-spacer height="10px" /> --><!-- Lesli
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
            Copyright (c) 2025, Lesli Technologies, S. A.
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            This program is free software: you can redistribute it and/or modify
         
     | 
| 
      
 100 
     | 
    
         
            +
            it under the terms of the GNU General Public License as published by
         
     | 
| 
      
 101 
     | 
    
         
            +
            the Free Software Foundation, either version 3 of the License, or
         
     | 
| 
      
 102 
     | 
    
         
            +
            (at your option) any later version.
         
     | 
| 
      
 103 
     | 
    
         
            +
             
     | 
| 
      
 104 
     | 
    
         
            +
            This program is distributed in the hope that it will be useful,
         
     | 
| 
      
 105 
     | 
    
         
            +
            but WITHOUT ANY WARRANTY; without even the implied warranty of
         
     | 
| 
      
 106 
     | 
    
         
            +
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
         
     | 
| 
      
 107 
     | 
    
         
            +
            GNU General Public License for more details.
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
            You should have received a copy of the GNU General Public License
         
     | 
| 
      
 110 
     | 
    
         
            +
            along with this program. If not, see http://www.gnu.org/licenses/.
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            Lesli · Ruby on Rails SaaS Development Framework.
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
            Made with ♥ by LesliTech
         
     | 
| 
      
 115 
     | 
    
         
            +
            Building a better future, one line of code at a time.
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            @contact  hello@lesli.tech
         
     | 
| 
      
 118 
     | 
    
         
            +
            @website  https://www.lesli.tech
         
     | 
| 
      
 119 
     | 
    
         
            +
            @license  GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            // · ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~     ~·~
         
     | 
| 
      
 122 
     | 
    
         
            +
            // · --><!-- Copyright --><!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" role="presentation" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--><div style="margin:0px auto;max-width:600px;"><table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; width: 100%;"><tbody><tr><td style="border-collapse: collapse; direction: ltr; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 0; text-align: center;"><!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--><div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;"><table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top;" width="100%"><tbody><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Copyright © 2025 Lesli</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">Guatemala.</div></td></tr><tr><td align="center" style="border-collapse: collapse; font-size: 0px; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 4px; word-break: break-word;"><div style="font-family:Ubuntu, Helvetica, Arial, sans-serif;font-size:13px;line-height:1;text-align:center;color:#666666;">All rights reserved.</div></td></tr><!-- <mj-text align="center" color="#666666" padding="4px" padding-top="20px">The Lesli Team</mj-text> --></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></td></tr></tbody></table></div><!--[if mso | IE]></td></tr></table><![endif]--></div></body></html>
         
     |