PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.5.3
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.5.3
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
fluent-cart / app / Views / emails / parts / licenses.php

licenses.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.5.3, at app/Views/emails/parts/licenses.php

57 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2 <?php use FluentCart\App\Helpers\Helper;
3 $showNotice = $show_notice ?? true;
4
5
6 if (isset($heading)): ?>
7 <p style="font-size:16px;font-weight:600;color:rgb(44,62,80);margin: 16px 0 0 0;line-height:24px;">
8 <?php echo esc_html($heading); ?>
9 </p>
10 <?php endif; ?>
11
12 <table role="presentation" style="width: 100%;overflow:hidden;margin-bottom: 0;border-spacing: 0;border:none;padding: 0 0 0 10px;">
13 <tbody>
14 <tr>
15 <td style="border:none;padding: 0;">
16 <table role="presentation" style="width: 100%;vertical-align: bottom;border-spacing: 0;padding: 0;margin-bottom: 10px;border:none;">
17 <tbody style="width:100%;vertical-align: bottom;">
18
19 <?php foreach ($licenses as $license): ?>
20 <tr style="width:100%;vertical-align: bottom;">
21 <td style="width:75%;border:none;padding: 0;">
22 <span style="font-size: 15px; color: #2F3448; font-weight: 500; overflow: hidden; line-height: 18px; margin-top: 0; margin-bottom: 5px;">
23 <?php echo esc_html($license->productVariant->variation_title); ?>:
24 <?php echo esc_attr($license->license_key); ?>
25 </span>
26
27 </td>
28
29
30 </tr>
31 <?php endforeach; ?>
32 </tbody>
33 </table>
34 </td>
35 </tr>
36 </tbody>
37 </table>
38
39 <?php if($showNotice): ?>
40 <table role="presentation"
41 style="background-color:rgb(239,246,255);padding:12px;border-radius:6px;margin-bottom:20px;border-width:1px;border-color:rgb(191,219,254)">
42 <tbody>
43 <tr>
44 <td>
45 <p style="font-size:14px;font-weight:600;color:rgb(30,58,138);line-height:24px;margin: 0 0 6px 0;">
46 <?php echo esc_html__('Important', 'fluent-cart');?>
47 </p>
48 <p style="font-size:13px;color:rgb(30,64,175);margin-bottom:0;line-height:1.2;margin-top:0">
49 <?php echo esc_html__('This download link is valid for 7 days. After that, you can download the files again from your account
50 on our website.', 'fluent-cart');?>
51 </p>
52 </td>
53 </tr>
54 </tbody>
55 </table>
56 <?php endif; ?>
57