PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.0
Timetics – Appointment Booking Calendar & Scheduling v1.0.0
1.0.61 1.0.60 1.0.59 1.0.58 1.0.57 1.0.56 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 All 62 releases
timetics / templates / emails / email-header.php

email-header.php in Timetics – Appointment Booking Calendar & Scheduling 1.0.0, at templates/emails/email-header.php

63 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 <title><?php echo esc_html( get_bloginfo( 'name' ) ); ?></title>
8 </head>
9 <style>
10 * {
11 box-sizing: border-box;
12 }
13 body {
14 background-color: #f4f5f7;
15 font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
16 }
17 p {
18 margin-bottom: 1rem;
19 }
20 a {
21 display: inline-block;
22 text-align: center;
23 }
24
25 .template-container {
26 max-width: 690px;
27 background-color: #ffffff;
28 border-top: 5px solid #509b8f;
29 border-radius: 10px;
30 padding: 30px 50px;
31 margin: 0 auto;
32 box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
33 }
34 .email-wrapper {
35 margin-bottom: 30px;
36 }
37 .company-info-are {
38 display: flex;
39 justify-content: flex-start;
40 align-items: center;
41 gap: 20px;
42 flex-wrap: wrap;
43 }
44 .verify-button,
45 a {
46 background-color: #491df5;
47 border: none;
48 padding: 15px;
49 width: 100%;
50 color: #fff;
51 font-size: 18px;
52 border-radius: 50px;
53 }
54 </style>
55 <body>
56 <div class="template-container">
57 <header>
58 <div class="company-info-are">
59 <!-- <div class="company-logo"><img src="" alt="Image" /></div> -->
60 <div class="company-name"><h2><?php echo esc_html( get_bloginfo( 'name' ) ); ?></h2></div>
61 </div>
62 </header>
63