first commit

This commit is contained in:
2024-11-11 18:46:54 +01:00
commit a630d17338
25634 changed files with 4923715 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<table class="table table-mail" style="width:100%;margin-top:10px;"><tbody><tr><td class="space" style="width:20px;padding:7px 0;">&nbsp;</td>
<td style="padding:7px 0;" align="center">
<table class="table" style="width:100%;" bgcolor="#ffffff"><tbody><tr><td class="logo" style="border-bottom:4px solid #333333;padding:7px 0;" align="center"><a style="color:#337ff1;" title="{shop_name}" href="{shop_url}"> <img src="{shop_logo}" alt="{shop_name}" /></a></td>
</tr><tr><td class="titleblock" style="padding:7px 0;" align="center"><span style="color:#555454;font-family:&#039;Open-sans&#039;, sans-serif;font-size:small;"> <span class="title" style="font-weight:500;font-size:28px;text-transform:uppercase;line-height:33px;">Hello {customer_firstname}!</span><br /><span class="subtitle" style="font-weight:500;font-size:16px;text-transform:uppercase;line-height:25px;">Thank you for creating an account at {shop_name}!</span></span></td>
</tr><tr><td class="space_footer" style="padding:0;">&nbsp;</td>
</tr><tr><td class="box" style="border:1px solid #D6D4D4;background-color:#f8f8f8;padding:7px 0;">
<table class="table" style="width:100%;"><tbody><tr><td style="padding:7px 0;" width="10">&nbsp;</td>
<td style="padding:7px 0;">
<h2 style="text-align:center;">To fully activate your account please click on the activation link</h2>
<p style="text-align:center;"><span style="color:#555454;font-family:&#039;Open-sans&#039;, sans-serif;font-size:small;"><a href="{link}">{link}</a></span></p>
</td>
<td style="padding:7px 0;" width="10">&nbsp;</td>
</tr></tbody></table></td>
</tr><tr><td class="space_footer" style="padding:0px;text-align:center;">&nbsp;</td>
</tr><tr><td class="space_footer" style="padding:0;">&nbsp;</td>
</tr><tr><td class="footer" style="border-top-width:4px;border-top-style:solid;border-top-color:#333333;padding:7px 0px;text-align:center;">&nbsp;Thank you for choosing&nbsp;<a href="{shop_url}">{shop_name}</a></td>
</tr></tbody></table></td>
<td class="space" style="width:20px;padding:7px 0;">&nbsp;</td>
</tr></tbody></table>

View File

@@ -0,0 +1,8 @@
--- HELLO {CUSTOMER_FIRSTNAME}! ---
THANK YOU FOR CREATING AN ACCOUNT AT {SHOP_NAME}!
To fully activate your account please click on the activation link:
{link}
Thank you for choosing {shop_name}

View File

@@ -0,0 +1,36 @@
<?php
/*
* 2007-2013 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2013 PrestaShop SA
* @version Release: $Revision$
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
header("Location: ../");
exit;

View File

@@ -0,0 +1,18 @@
<table class="table table-mail" style="width:100%;margin-top:10px;"><tbody><tr><td class="space" style="width:20px;padding:7px 0;">&nbsp;</td>
<td style="padding:7px 0;" align="center">
<table class="table" style="width:100%;" bgcolor="#ffffff"><tbody><tr><td class="logo" style="border-bottom:4px solid #333333;padding:7px 0;" align="center"><a style="color:#337ff1;" title="{shop_name}" href="{shop_url}"> <img src="{shop_logo}" alt="{shop_name}" /></a></td>
</tr><tr><td class="titleblock" style="padding:7px 0;" align="center"><span style="color:#555454;font-family:&#039;Open-sans&#039;, sans-serif;font-size:small;"> <span class="title" style="font-weight:500;font-size:28px;text-transform:uppercase;line-height:33px;">Hello {customer_firstname}!</span><br /><span class="subtitle" style="font-weight:500;font-size:16px;text-transform:uppercase;line-height:25px;">Thank you for creating an account at {shop_name}!</span></span></td>
</tr><tr><td class="space_footer" style="padding:0;">&nbsp;</td>
</tr><tr><td class="box" style="border:1px solid #D6D4D4;background-color:#f8f8f8;padding:7px 0;">
<table class="table" style="width:100%;"><tbody><tr><td style="padding:7px 0;" width="10">&nbsp;</td>
<td style="padding:7px 0;">
<h2 style="text-align:center;">We are happy to inform that we fully reviewed and acivated your user account</h2>
</td>
<td style="padding:7px 0;" width="10">&nbsp;</td>
</tr></tbody></table></td>
</tr><tr><td class="space_footer" style="padding:0px;text-align:center;">&nbsp;</td>
</tr><tr><td class="space_footer" style="padding:0;">&nbsp;</td>
</tr><tr><td class="footer" style="border-top-width:4px;border-top-style:solid;border-top-color:#333333;padding:7px 0px;text-align:center;">&nbsp;Thank you for choosing&nbsp;<a href="{shop_url}">{shop_name}</a></td>
</tr></tbody></table></td>
<td class="space" style="width:20px;padding:7px 0;">&nbsp;</td>
</tr></tbody></table>

View File

@@ -0,0 +1,7 @@
--- HELLO {CUSTOMER_FIRSTNAME}! ---
THANK YOU FOR CREATING AN ACCOUNT AT {SHOP_NAME}!
We are happy to inform that we fully reviewed and acivated your user account
Thank you for choosing {shop_name}