@blackcode_sa/metaestetics-api 1.14.61 → 1.14.63
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.
- package/dist/admin/index.js +306 -593
- package/dist/admin/index.mjs +306 -593
- package/package.json +1 -1
- package/src/admin/mailing/appointment/appointment.mailing.service.ts +318 -605
package/dist/admin/index.mjs
CHANGED
|
@@ -2378,295 +2378,172 @@ var appointmentCancelledTemplate = `
|
|
|
2378
2378
|
<meta charset="UTF-8">
|
|
2379
2379
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
2380
2380
|
<title>Appointment Cancelled</title>
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
max-width: 600px;
|
|
2391
|
-
margin: 0 auto;
|
|
2392
|
-
background: #ffffff;
|
|
2393
|
-
border-radius: 20px;
|
|
2394
|
-
overflow: hidden;
|
|
2395
|
-
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
2396
|
-
margin-top: 40px;
|
|
2397
|
-
margin-bottom: 40px;
|
|
2398
|
-
}
|
|
2399
|
-
.header {
|
|
2400
|
-
background: linear-gradient(135deg, #d4736c 0%, #b85450 100%);
|
|
2401
|
-
padding: 40px 30px;
|
|
2402
|
-
text-align: center;
|
|
2403
|
-
color: white;
|
|
2404
|
-
}
|
|
2405
|
-
.header h1 {
|
|
2406
|
-
margin: 0;
|
|
2407
|
-
font-size: 28px;
|
|
2408
|
-
font-weight: 300;
|
|
2409
|
-
letter-spacing: 1px;
|
|
2410
|
-
}
|
|
2411
|
-
.header .subtitle {
|
|
2412
|
-
margin: 10px 0 0 0;
|
|
2413
|
-
font-size: 16px;
|
|
2414
|
-
opacity: 0.9;
|
|
2415
|
-
font-weight: 300;
|
|
2416
|
-
}
|
|
2417
|
-
.content {
|
|
2418
|
-
padding: 40px 30px;
|
|
2419
|
-
}
|
|
2420
|
-
.greeting {
|
|
2421
|
-
font-size: 18px;
|
|
2422
|
-
color: #333;
|
|
2423
|
-
margin-bottom: 25px;
|
|
2424
|
-
font-weight: 400;
|
|
2425
|
-
}
|
|
2426
|
-
.cancellation-notice {
|
|
2427
|
-
background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
|
|
2428
|
-
border-radius: 15px;
|
|
2429
|
-
padding: 25px;
|
|
2430
|
-
margin: 25px 0;
|
|
2431
|
-
border-left: 5px solid #d4736c;
|
|
2432
|
-
}
|
|
2433
|
-
.cancellation-notice p {
|
|
2434
|
-
margin: 0;
|
|
2435
|
-
color: #c62828;
|
|
2436
|
-
font-size: 15px;
|
|
2437
|
-
font-weight: 500;
|
|
2438
|
-
line-height: 1.6;
|
|
2439
|
-
}
|
|
2440
|
-
.cancelled-by-info {
|
|
2441
|
-
background: #fafafa;
|
|
2442
|
-
border-radius: 10px;
|
|
2443
|
-
padding: 15px 20px;
|
|
2444
|
-
margin-top: 15px;
|
|
2445
|
-
}
|
|
2446
|
-
.cancelled-by-info .label {
|
|
2447
|
-
font-size: 12px;
|
|
2448
|
-
color: #757575;
|
|
2449
|
-
text-transform: uppercase;
|
|
2450
|
-
letter-spacing: 0.5px;
|
|
2451
|
-
margin-bottom: 5px;
|
|
2452
|
-
}
|
|
2453
|
-
.cancelled-by-info .value {
|
|
2454
|
-
font-size: 14px;
|
|
2455
|
-
color: #424242;
|
|
2456
|
-
font-weight: 500;
|
|
2457
|
-
}
|
|
2458
|
-
.reason-box {
|
|
2459
|
-
background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
|
|
2460
|
-
border-radius: 15px;
|
|
2461
|
-
padding: 20px;
|
|
2462
|
-
margin: 20px 0;
|
|
2463
|
-
border-left: 5px solid #ffa000;
|
|
2464
|
-
}
|
|
2465
|
-
.reason-box .label {
|
|
2466
|
-
font-size: 14px;
|
|
2467
|
-
font-weight: 600;
|
|
2468
|
-
color: #e65100;
|
|
2469
|
-
margin-bottom: 8px;
|
|
2470
|
-
}
|
|
2471
|
-
.reason-box .reason-text {
|
|
2472
|
-
font-size: 15px;
|
|
2473
|
-
color: #424242;
|
|
2474
|
-
line-height: 1.6;
|
|
2475
|
-
font-style: italic;
|
|
2476
|
-
}
|
|
2477
|
-
.appointment-card {
|
|
2478
|
-
background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
|
|
2479
|
-
border-radius: 15px;
|
|
2480
|
-
padding: 30px;
|
|
2481
|
-
margin: 25px 0;
|
|
2482
|
-
border-left: 5px solid #9e9e9e;
|
|
2483
|
-
opacity: 0.9;
|
|
2484
|
-
}
|
|
2485
|
-
.appointment-title {
|
|
2486
|
-
font-size: 20px;
|
|
2487
|
-
color: #757575;
|
|
2488
|
-
margin-bottom: 20px;
|
|
2489
|
-
font-weight: 600;
|
|
2490
|
-
}
|
|
2491
|
-
.appointment-details {
|
|
2492
|
-
display: grid;
|
|
2493
|
-
gap: 15px;
|
|
2494
|
-
}
|
|
2495
|
-
.detail-row {
|
|
2496
|
-
display: flex;
|
|
2497
|
-
align-items: center;
|
|
2498
|
-
padding: 8px 0;
|
|
2499
|
-
}
|
|
2500
|
-
.detail-label {
|
|
2501
|
-
font-weight: 600;
|
|
2502
|
-
color: #757575;
|
|
2503
|
-
min-width: 120px;
|
|
2504
|
-
font-size: 14px;
|
|
2505
|
-
}
|
|
2506
|
-
.detail-value {
|
|
2507
|
-
color: #616161;
|
|
2508
|
-
font-size: 16px;
|
|
2509
|
-
font-weight: 500;
|
|
2510
|
-
text-decoration: line-through;
|
|
2511
|
-
}
|
|
2512
|
-
.procedure-name {
|
|
2513
|
-
color: #757575;
|
|
2514
|
-
font-weight: 600;
|
|
2515
|
-
}
|
|
2516
|
-
.clinic-name {
|
|
2517
|
-
color: #9e9e9e;
|
|
2518
|
-
font-weight: 600;
|
|
2519
|
-
}
|
|
2520
|
-
.rebook-section {
|
|
2521
|
-
background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
|
|
2522
|
-
border-radius: 15px;
|
|
2523
|
-
padding: 25px;
|
|
2524
|
-
margin: 30px 0;
|
|
2525
|
-
text-align: center;
|
|
2526
|
-
border-left: 5px solid #4caf50;
|
|
2527
|
-
}
|
|
2528
|
-
.rebook-section h3 {
|
|
2529
|
-
margin: 0 0 15px 0;
|
|
2530
|
-
color: #2e7d32;
|
|
2531
|
-
font-weight: 600;
|
|
2532
|
-
font-size: 18px;
|
|
2533
|
-
}
|
|
2534
|
-
.rebook-section p {
|
|
2535
|
-
margin: 0;
|
|
2536
|
-
color: #555;
|
|
2537
|
-
font-size: 15px;
|
|
2538
|
-
line-height: 1.6;
|
|
2539
|
-
}
|
|
2540
|
-
.support-section {
|
|
2541
|
-
background: #f8f9fa;
|
|
2542
|
-
border-radius: 15px;
|
|
2543
|
-
padding: 20px;
|
|
2544
|
-
margin: 25px 0;
|
|
2545
|
-
text-align: center;
|
|
2546
|
-
}
|
|
2547
|
-
.support-section h4 {
|
|
2548
|
-
margin: 0 0 10px 0;
|
|
2549
|
-
color: #555;
|
|
2550
|
-
font-weight: 600;
|
|
2551
|
-
font-size: 16px;
|
|
2552
|
-
}
|
|
2553
|
-
.support-section p {
|
|
2554
|
-
margin: 0;
|
|
2555
|
-
color: #757575;
|
|
2556
|
-
font-size: 14px;
|
|
2557
|
-
line-height: 1.6;
|
|
2558
|
-
}
|
|
2559
|
-
.footer {
|
|
2560
|
-
background: #f8f9fa;
|
|
2561
|
-
padding: 25px 30px;
|
|
2562
|
-
text-align: center;
|
|
2563
|
-
color: #666;
|
|
2564
|
-
font-size: 14px;
|
|
2565
|
-
border-top: 1px solid #eee;
|
|
2566
|
-
}
|
|
2567
|
-
.logo {
|
|
2568
|
-
font-size: 24px;
|
|
2569
|
-
font-weight: 700;
|
|
2570
|
-
color: white;
|
|
2571
|
-
margin-bottom: 5px;
|
|
2572
|
-
}
|
|
2573
|
-
.divider {
|
|
2574
|
-
height: 2px;
|
|
2575
|
-
background: linear-gradient(90deg, #d4736c, #b85450);
|
|
2576
|
-
margin: 25px 0;
|
|
2577
|
-
border-radius: 1px;
|
|
2578
|
-
}
|
|
2579
|
-
.icon {
|
|
2580
|
-
text-align: center;
|
|
2581
|
-
margin: 20px 0;
|
|
2582
|
-
font-size: 48px;
|
|
2583
|
-
}
|
|
2584
|
-
</style>
|
|
2381
|
+
<!--[if mso]>
|
|
2382
|
+
<noscript>
|
|
2383
|
+
<xml>
|
|
2384
|
+
<o:OfficeDocumentSettings>
|
|
2385
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
|
2386
|
+
</o:OfficeDocumentSettings>
|
|
2387
|
+
</xml>
|
|
2388
|
+
</noscript>
|
|
2389
|
+
<![endif]-->
|
|
2585
2390
|
</head>
|
|
2586
|
-
<body>
|
|
2587
|
-
<
|
|
2588
|
-
<
|
|
2589
|
-
<
|
|
2590
|
-
|
|
2591
|
-
<div class="subtitle">We're Sorry to See This Change</div>
|
|
2592
|
-
</div>
|
|
2391
|
+
<body style="margin: 0; padding: 0; background-color: #f8f6f5; font-family: Georgia, 'Times New Roman', serif;">
|
|
2392
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="background-color: #f8f6f5;">
|
|
2393
|
+
<tr>
|
|
2394
|
+
<td align="center" style="padding: 40px 20px;">
|
|
2395
|
+
<table role="presentation" width="600" cellspacing="0" cellpadding="0" border="0" style="max-width: 600px; background-color: #ffffff; border-radius: 2px; box-shadow: 0 1px 3px rgba(103, 87, 74, 0.08);">
|
|
2593
2396
|
|
|
2594
|
-
|
|
2595
|
-
|
|
2397
|
+
<!-- Header -->
|
|
2398
|
+
<tr>
|
|
2399
|
+
<td style="padding: 48px 48px 32px 48px; border-bottom: 1px solid #f0ebe6;">
|
|
2400
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2401
|
+
<tr>
|
|
2402
|
+
<td>
|
|
2403
|
+
<h1 style="margin: 0; font-size: 24px; font-weight: 400; color: #67574A; letter-spacing: 2px; text-transform: uppercase; font-family: Georgia, 'Times New Roman', serif;">MetaEstetics</h1>
|
|
2404
|
+
</td>
|
|
2405
|
+
</tr>
|
|
2406
|
+
</table>
|
|
2407
|
+
</td>
|
|
2408
|
+
</tr>
|
|
2596
2409
|
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2410
|
+
<!-- Cancellation Banner -->
|
|
2411
|
+
<tr>
|
|
2412
|
+
<td style="padding: 0;">
|
|
2413
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="background-color: #fa003f;">
|
|
2414
|
+
<tr>
|
|
2415
|
+
<td style="padding: 20px 48px;">
|
|
2416
|
+
<p style="margin: 0; font-size: 13px; font-weight: 600; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Appointment Cancelled</p>
|
|
2417
|
+
</td>
|
|
2418
|
+
</tr>
|
|
2419
|
+
</table>
|
|
2420
|
+
</td>
|
|
2421
|
+
</tr>
|
|
2600
2422
|
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
<div class="label">Cancelled By</div>
|
|
2605
|
-
<div class="value">{{cancelledByDisplay}}</div>
|
|
2606
|
-
</div>
|
|
2607
|
-
</div>
|
|
2423
|
+
<!-- Main Content -->
|
|
2424
|
+
<tr>
|
|
2425
|
+
<td style="padding: 40px 48px;">
|
|
2608
2426
|
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
</div>
|
|
2614
|
-
{{/if}}
|
|
2427
|
+
<!-- Greeting -->
|
|
2428
|
+
<p style="margin: 0 0 24px 0; font-size: 17px; color: #333333; line-height: 1.6; font-family: Georgia, 'Times New Roman', serif;">
|
|
2429
|
+
Dear {{recipientName}},
|
|
2430
|
+
</p>
|
|
2615
2431
|
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
<div class="detail-row">
|
|
2620
|
-
<div class="detail-label">Procedure:</div>
|
|
2621
|
-
<div class="detail-value procedure-name">{{procedureName}}</div>
|
|
2622
|
-
</div>
|
|
2623
|
-
<div class="detail-row">
|
|
2624
|
-
<div class="detail-label">Date:</div>
|
|
2625
|
-
<div class="detail-value">{{appointmentDate}}</div>
|
|
2626
|
-
</div>
|
|
2627
|
-
<div class="detail-row">
|
|
2628
|
-
<div class="detail-label">Time:</div>
|
|
2629
|
-
<div class="detail-value">{{appointmentTime}}</div>
|
|
2630
|
-
</div>
|
|
2631
|
-
<div class="detail-row">
|
|
2632
|
-
<div class="detail-label">Practitioner:</div>
|
|
2633
|
-
<div class="detail-value">{{practitionerName}}</div>
|
|
2634
|
-
</div>
|
|
2635
|
-
<div class="detail-row">
|
|
2636
|
-
<div class="detail-label">Location:</div>
|
|
2637
|
-
<div class="detail-value clinic-name">{{clinicName}}</div>
|
|
2638
|
-
</div>
|
|
2639
|
-
</div>
|
|
2640
|
-
</div>
|
|
2432
|
+
<p style="margin: 0 0 32px 0; font-size: 16px; color: #555555; line-height: 1.7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2433
|
+
We regret to inform you that your appointment has been cancelled. Please see the details below.
|
|
2434
|
+
</p>
|
|
2641
2435
|
|
|
2642
|
-
|
|
2436
|
+
<!-- Cancelled By Info -->
|
|
2437
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 24px;">
|
|
2438
|
+
<tr>
|
|
2439
|
+
<td style="padding: 16px 20px; background-color: #fef2f2; border-left: 3px solid #fa003f;">
|
|
2440
|
+
<p style="margin: 0 0 4px 0; font-size: 11px; font-weight: 600; color: #868686; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Cancelled By</p>
|
|
2441
|
+
<p style="margin: 0; font-size: 15px; color: #333333; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{cancelledByDisplay}}</p>
|
|
2442
|
+
</td>
|
|
2443
|
+
</tr>
|
|
2444
|
+
</table>
|
|
2643
2445
|
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2446
|
+
{{#if cancellationReason}}
|
|
2447
|
+
<!-- Cancellation Reason -->
|
|
2448
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px;">
|
|
2449
|
+
<tr>
|
|
2450
|
+
<td style="padding: 20px 24px; background-color: #faf9f7; border-left: 3px solid #a48a76;">
|
|
2451
|
+
<p style="margin: 0 0 8px 0; font-size: 11px; font-weight: 600; color: #868686; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Reason</p>
|
|
2452
|
+
<p style="margin: 0; font-size: 15px; color: #555555; line-height: 1.6; font-style: italic; font-family: Georgia, 'Times New Roman', serif;">"{{cancellationReason}}"</p>
|
|
2453
|
+
</td>
|
|
2454
|
+
</tr>
|
|
2455
|
+
</table>
|
|
2456
|
+
{{/if}}
|
|
2651
2457
|
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
</p>
|
|
2658
|
-
</div>
|
|
2659
|
-
</div>
|
|
2458
|
+
<!-- Cancelled Appointment Details -->
|
|
2459
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px; background-color: #f5f5f5; border-left: 3px solid #cccccc;">
|
|
2460
|
+
<tr>
|
|
2461
|
+
<td style="padding: 24px;">
|
|
2462
|
+
<p style="margin: 0 0 16px 0; font-size: 12px; font-weight: 600; color: #999999; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Cancelled Appointment</p>
|
|
2660
2463
|
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2464
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2465
|
+
<tr>
|
|
2466
|
+
<td style="padding-bottom: 12px;">
|
|
2467
|
+
<p style="margin: 0 0 2px 0; font-size: 11px; color: #999999; text-transform: uppercase; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Procedure</p>
|
|
2468
|
+
<p style="margin: 0; font-size: 15px; color: #888888; text-decoration: line-through; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{procedureName}}</p>
|
|
2469
|
+
</td>
|
|
2470
|
+
</tr>
|
|
2471
|
+
<tr>
|
|
2472
|
+
<td style="padding-bottom: 12px;">
|
|
2473
|
+
<p style="margin: 0 0 2px 0; font-size: 11px; color: #999999; text-transform: uppercase; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Date & Time</p>
|
|
2474
|
+
<p style="margin: 0; font-size: 15px; color: #888888; text-decoration: line-through; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{appointmentDate}} at {{appointmentTime}}</p>
|
|
2475
|
+
</td>
|
|
2476
|
+
</tr>
|
|
2477
|
+
<tr>
|
|
2478
|
+
<td style="padding-bottom: 12px;">
|
|
2479
|
+
<p style="margin: 0 0 2px 0; font-size: 11px; color: #999999; text-transform: uppercase; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Practitioner</p>
|
|
2480
|
+
<p style="margin: 0; font-size: 15px; color: #888888; text-decoration: line-through; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{practitionerName}}</p>
|
|
2481
|
+
</td>
|
|
2482
|
+
</tr>
|
|
2483
|
+
<tr>
|
|
2484
|
+
<td>
|
|
2485
|
+
<p style="margin: 0 0 2px 0; font-size: 11px; color: #999999; text-transform: uppercase; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Location</p>
|
|
2486
|
+
<p style="margin: 0; font-size: 15px; color: #888888; text-decoration: line-through; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{clinicName}}</p>
|
|
2487
|
+
</td>
|
|
2488
|
+
</tr>
|
|
2489
|
+
</table>
|
|
2490
|
+
</td>
|
|
2491
|
+
</tr>
|
|
2492
|
+
</table>
|
|
2493
|
+
|
|
2494
|
+
<!-- Divider -->
|
|
2495
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px;">
|
|
2496
|
+
<tr>
|
|
2497
|
+
<td style="height: 1px; background-color: #e8e4df;"></td>
|
|
2498
|
+
</tr>
|
|
2499
|
+
</table>
|
|
2500
|
+
|
|
2501
|
+
<!-- Rebook Section -->
|
|
2502
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px; background-color: #f0faf4; border-left: 3px solid #00BB38;">
|
|
2503
|
+
<tr>
|
|
2504
|
+
<td style="padding: 28px;">
|
|
2505
|
+
<p style="margin: 0 0 12px 0; font-size: 15px; font-weight: 600; color: #00BB38; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Book a New Appointment</p>
|
|
2506
|
+
<p style="margin: 0 0 20px 0; font-size: 14px; color: #555555; line-height: 1.7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2507
|
+
We'd love to see you. Open the MetaEstetics app to browse available times and book a new appointment.
|
|
2508
|
+
</p>
|
|
2509
|
+
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
2510
|
+
<tr>
|
|
2511
|
+
<td style="background-color: #67574A; border-radius: 2px;">
|
|
2512
|
+
<a href="#" style="display: inline-block; padding: 14px 32px; font-size: 13px; font-weight: 600; color: #ffffff; text-decoration: none; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Book New Appointment</a>
|
|
2513
|
+
</td>
|
|
2514
|
+
</tr>
|
|
2515
|
+
</table>
|
|
2516
|
+
</td>
|
|
2517
|
+
</tr>
|
|
2518
|
+
</table>
|
|
2519
|
+
|
|
2520
|
+
<!-- Support Info -->
|
|
2521
|
+
<p style="margin: 0; font-size: 13px; color: #868686; line-height: 1.7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2522
|
+
If you have any questions about this cancellation, please contact {{clinicName}} directly through the app.
|
|
2523
|
+
</p>
|
|
2524
|
+
|
|
2525
|
+
</td>
|
|
2526
|
+
</tr>
|
|
2527
|
+
|
|
2528
|
+
<!-- Footer -->
|
|
2529
|
+
<tr>
|
|
2530
|
+
<td style="padding: 32px 48px; background-color: #faf9f7; border-top: 1px solid #f0ebe6;">
|
|
2531
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2532
|
+
<tr>
|
|
2533
|
+
<td>
|
|
2534
|
+
<p style="margin: 0 0 8px 0; font-size: 14px; font-weight: 500; color: #67574A; font-family: Georgia, 'Times New Roman', serif;">{{clinicName}}</p>
|
|
2535
|
+
<p style="margin: 0 0 16px 0; font-size: 13px; color: #868686; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Premium Aesthetic Services</p>
|
|
2536
|
+
<p style="margin: 0; font-size: 11px; color: #aaaaaa; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">This is an automated message from MetaEstetics. Please do not reply directly to this email.</p>
|
|
2537
|
+
</td>
|
|
2538
|
+
</tr>
|
|
2539
|
+
</table>
|
|
2540
|
+
</td>
|
|
2541
|
+
</tr>
|
|
2542
|
+
|
|
2543
|
+
</table>
|
|
2544
|
+
</td>
|
|
2545
|
+
</tr>
|
|
2546
|
+
</table>
|
|
2670
2547
|
</body>
|
|
2671
2548
|
</html>
|
|
2672
2549
|
`;
|
|
@@ -2676,324 +2553,160 @@ var appointmentRescheduledProposalTemplate = `
|
|
|
2676
2553
|
<head>
|
|
2677
2554
|
<meta charset="UTF-8">
|
|
2678
2555
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
2679
|
-
<title>Appointment Reschedule
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
max-width: 600px;
|
|
2690
|
-
margin: 0 auto;
|
|
2691
|
-
background: #ffffff;
|
|
2692
|
-
border-radius: 20px;
|
|
2693
|
-
overflow: hidden;
|
|
2694
|
-
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
2695
|
-
margin-top: 40px;
|
|
2696
|
-
margin-bottom: 40px;
|
|
2697
|
-
}
|
|
2698
|
-
.header {
|
|
2699
|
-
background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
|
|
2700
|
-
padding: 40px 30px;
|
|
2701
|
-
text-align: center;
|
|
2702
|
-
color: white;
|
|
2703
|
-
}
|
|
2704
|
-
.header h1 {
|
|
2705
|
-
margin: 0;
|
|
2706
|
-
font-size: 28px;
|
|
2707
|
-
font-weight: 300;
|
|
2708
|
-
letter-spacing: 1px;
|
|
2709
|
-
}
|
|
2710
|
-
.header .subtitle {
|
|
2711
|
-
margin: 10px 0 0 0;
|
|
2712
|
-
font-size: 16px;
|
|
2713
|
-
opacity: 0.9;
|
|
2714
|
-
font-weight: 300;
|
|
2715
|
-
}
|
|
2716
|
-
.content {
|
|
2717
|
-
padding: 40px 30px;
|
|
2718
|
-
}
|
|
2719
|
-
.greeting {
|
|
2720
|
-
font-size: 18px;
|
|
2721
|
-
color: #333;
|
|
2722
|
-
margin-bottom: 25px;
|
|
2723
|
-
font-weight: 400;
|
|
2724
|
-
}
|
|
2725
|
-
.info-box {
|
|
2726
|
-
background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
|
|
2727
|
-
border-radius: 15px;
|
|
2728
|
-
padding: 25px;
|
|
2729
|
-
margin: 25px 0;
|
|
2730
|
-
border-left: 5px solid #ff9800;
|
|
2731
|
-
}
|
|
2732
|
-
.info-box p {
|
|
2733
|
-
margin: 0;
|
|
2734
|
-
color: #e65100;
|
|
2735
|
-
font-size: 15px;
|
|
2736
|
-
font-weight: 500;
|
|
2737
|
-
line-height: 1.6;
|
|
2738
|
-
}
|
|
2739
|
-
.time-comparison {
|
|
2740
|
-
display: grid;
|
|
2741
|
-
gap: 20px;
|
|
2742
|
-
margin: 25px 0;
|
|
2743
|
-
}
|
|
2744
|
-
.time-card {
|
|
2745
|
-
background: linear-gradient(135deg, #f8f6f5 0%, #f5f3f2 100%);
|
|
2746
|
-
border-radius: 15px;
|
|
2747
|
-
padding: 25px;
|
|
2748
|
-
border-left: 5px solid #a48a76;
|
|
2749
|
-
}
|
|
2750
|
-
.time-card.old-time {
|
|
2751
|
-
border-left-color: #9e9e9e;
|
|
2752
|
-
opacity: 0.8;
|
|
2753
|
-
}
|
|
2754
|
-
.time-card.new-time {
|
|
2755
|
-
border-left-color: #ff9800;
|
|
2756
|
-
background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
|
|
2757
|
-
}
|
|
2758
|
-
.time-label {
|
|
2759
|
-
font-size: 14px;
|
|
2760
|
-
font-weight: 600;
|
|
2761
|
-
color: #666;
|
|
2762
|
-
text-transform: uppercase;
|
|
2763
|
-
letter-spacing: 0.5px;
|
|
2764
|
-
margin-bottom: 10px;
|
|
2765
|
-
}
|
|
2766
|
-
.time-label.old {
|
|
2767
|
-
color: #757575;
|
|
2768
|
-
}
|
|
2769
|
-
.time-label.new {
|
|
2770
|
-
color: #f57c00;
|
|
2771
|
-
}
|
|
2772
|
-
.appointment-card {
|
|
2773
|
-
background: linear-gradient(135deg, #f8f6f5 0%, #f5f3f2 100%);
|
|
2774
|
-
border-radius: 15px;
|
|
2775
|
-
padding: 30px;
|
|
2776
|
-
margin: 25px 0;
|
|
2777
|
-
border-left: 5px solid #a48a76;
|
|
2778
|
-
}
|
|
2779
|
-
.appointment-title {
|
|
2780
|
-
font-size: 20px;
|
|
2781
|
-
color: #a48a76;
|
|
2782
|
-
margin-bottom: 20px;
|
|
2783
|
-
font-weight: 600;
|
|
2784
|
-
}
|
|
2785
|
-
.appointment-details {
|
|
2786
|
-
display: grid;
|
|
2787
|
-
gap: 15px;
|
|
2788
|
-
}
|
|
2789
|
-
.detail-row {
|
|
2790
|
-
display: flex;
|
|
2791
|
-
align-items: center;
|
|
2792
|
-
padding: 8px 0;
|
|
2793
|
-
}
|
|
2794
|
-
.detail-label {
|
|
2795
|
-
font-weight: 600;
|
|
2796
|
-
color: #555;
|
|
2797
|
-
min-width: 120px;
|
|
2798
|
-
font-size: 14px;
|
|
2799
|
-
}
|
|
2800
|
-
.detail-value {
|
|
2801
|
-
color: #333;
|
|
2802
|
-
font-size: 16px;
|
|
2803
|
-
font-weight: 500;
|
|
2804
|
-
}
|
|
2805
|
-
.procedure-name {
|
|
2806
|
-
color: #67574A;
|
|
2807
|
-
font-weight: 600;
|
|
2808
|
-
}
|
|
2809
|
-
.clinic-name {
|
|
2810
|
-
color: #a48a76;
|
|
2811
|
-
font-weight: 600;
|
|
2812
|
-
}
|
|
2813
|
-
.action-section {
|
|
2814
|
-
background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
|
|
2815
|
-
border-radius: 15px;
|
|
2816
|
-
padding: 30px;
|
|
2817
|
-
margin: 30px 0;
|
|
2818
|
-
text-align: center;
|
|
2819
|
-
border-left: 5px solid #4caf50;
|
|
2820
|
-
}
|
|
2821
|
-
.action-section h3 {
|
|
2822
|
-
margin: 0 0 15px 0;
|
|
2823
|
-
color: #2e7d32;
|
|
2824
|
-
font-weight: 600;
|
|
2825
|
-
font-size: 18px;
|
|
2826
|
-
}
|
|
2827
|
-
.action-section p {
|
|
2828
|
-
margin: 0 0 20px 0;
|
|
2829
|
-
color: #555;
|
|
2830
|
-
font-size: 15px;
|
|
2831
|
-
line-height: 1.6;
|
|
2832
|
-
}
|
|
2833
|
-
.action-required-box {
|
|
2834
|
-
background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
|
|
2835
|
-
border: 2px solid #ff9800;
|
|
2836
|
-
border-radius: 15px;
|
|
2837
|
-
padding: 25px;
|
|
2838
|
-
margin: 25px 0;
|
|
2839
|
-
text-align: center;
|
|
2840
|
-
}
|
|
2841
|
-
.action-required-box h3 {
|
|
2842
|
-
margin: 0 0 15px 0;
|
|
2843
|
-
color: #e65100;
|
|
2844
|
-
font-weight: 700;
|
|
2845
|
-
font-size: 18px;
|
|
2846
|
-
}
|
|
2847
|
-
.action-required-box p {
|
|
2848
|
-
margin: 0 0 12px 0;
|
|
2849
|
-
color: #bf360c;
|
|
2850
|
-
font-size: 15px;
|
|
2851
|
-
line-height: 1.6;
|
|
2852
|
-
}
|
|
2853
|
-
.action-required-box p:last-child {
|
|
2854
|
-
margin-bottom: 0;
|
|
2855
|
-
}
|
|
2856
|
-
.pending-notice {
|
|
2857
|
-
background: #fff8e1;
|
|
2858
|
-
border-radius: 8px;
|
|
2859
|
-
padding: 12px 15px;
|
|
2860
|
-
margin-top: 15px;
|
|
2861
|
-
display: inline-block;
|
|
2862
|
-
}
|
|
2863
|
-
.pending-notice p {
|
|
2864
|
-
margin: 0;
|
|
2865
|
-
color: #f57c00;
|
|
2866
|
-
font-size: 14px;
|
|
2867
|
-
font-weight: 600;
|
|
2868
|
-
}
|
|
2869
|
-
.footer {
|
|
2870
|
-
background: #f8f9fa;
|
|
2871
|
-
padding: 25px 30px;
|
|
2872
|
-
text-align: center;
|
|
2873
|
-
color: #666;
|
|
2874
|
-
font-size: 14px;
|
|
2875
|
-
border-top: 1px solid #eee;
|
|
2876
|
-
}
|
|
2877
|
-
.logo {
|
|
2878
|
-
font-size: 24px;
|
|
2879
|
-
font-weight: 700;
|
|
2880
|
-
color: white;
|
|
2881
|
-
margin-bottom: 5px;
|
|
2882
|
-
}
|
|
2883
|
-
.divider {
|
|
2884
|
-
height: 2px;
|
|
2885
|
-
background: linear-gradient(90deg, #a48a76, #67574A);
|
|
2886
|
-
margin: 25px 0;
|
|
2887
|
-
border-radius: 1px;
|
|
2888
|
-
}
|
|
2889
|
-
.icon {
|
|
2890
|
-
text-align: center;
|
|
2891
|
-
margin: 20px 0;
|
|
2892
|
-
font-size: 48px;
|
|
2893
|
-
}
|
|
2894
|
-
.arrow {
|
|
2895
|
-
text-align: center;
|
|
2896
|
-
font-size: 32px;
|
|
2897
|
-
color: #ff9800;
|
|
2898
|
-
margin: 10px 0;
|
|
2899
|
-
}
|
|
2900
|
-
</style>
|
|
2556
|
+
<title>Appointment Reschedule Request</title>
|
|
2557
|
+
<!--[if mso]>
|
|
2558
|
+
<noscript>
|
|
2559
|
+
<xml>
|
|
2560
|
+
<o:OfficeDocumentSettings>
|
|
2561
|
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
|
2562
|
+
</o:OfficeDocumentSettings>
|
|
2563
|
+
</xml>
|
|
2564
|
+
</noscript>
|
|
2565
|
+
<![endif]-->
|
|
2901
2566
|
</head>
|
|
2902
|
-
<body>
|
|
2903
|
-
<
|
|
2904
|
-
<
|
|
2905
|
-
<
|
|
2906
|
-
|
|
2907
|
-
<div class="subtitle">Action Required</div>
|
|
2908
|
-
</div>
|
|
2909
|
-
|
|
2910
|
-
<div class="content">
|
|
2911
|
-
<div class="icon">\u{1F4C5}</div>
|
|
2912
|
-
|
|
2913
|
-
<div class="greeting">
|
|
2914
|
-
Dear <strong>{{patientName}}</strong>,
|
|
2915
|
-
</div>
|
|
2916
|
-
|
|
2917
|
-
<p style="color: #555; font-size: 16px; line-height: 1.6; margin-bottom: 25px;">
|
|
2918
|
-
We hope this message finds you well. We need to propose a new time for your upcoming appointment. Please review the details below and confirm if the new time works for you.
|
|
2919
|
-
</p>
|
|
2920
|
-
|
|
2921
|
-
<div class="info-box">
|
|
2922
|
-
<p><strong>\u26A0\uFE0F Important:</strong> Please respond to this reschedule proposal as soon as possible. Your appointment will remain pending until you confirm or reject the new time.</p>
|
|
2923
|
-
</div>
|
|
2924
|
-
|
|
2925
|
-
<div class="appointment-card">
|
|
2926
|
-
<div class="appointment-title">\u{1F4CB} Appointment Details</div>
|
|
2927
|
-
<div class="appointment-details">
|
|
2928
|
-
<div class="detail-row">
|
|
2929
|
-
<div class="detail-label">Procedure:</div>
|
|
2930
|
-
<div class="detail-value procedure-name">{{procedureName}}</div>
|
|
2931
|
-
</div>
|
|
2932
|
-
<div class="detail-row">
|
|
2933
|
-
<div class="detail-label">Practitioner:</div>
|
|
2934
|
-
<div class="detail-value">{{practitionerName}}</div>
|
|
2935
|
-
</div>
|
|
2936
|
-
<div class="detail-row">
|
|
2937
|
-
<div class="detail-label">Location:</div>
|
|
2938
|
-
<div class="detail-value clinic-name">{{clinicName}}</div>
|
|
2939
|
-
</div>
|
|
2940
|
-
</div>
|
|
2941
|
-
</div>
|
|
2942
|
-
|
|
2943
|
-
<div class="time-comparison">
|
|
2944
|
-
<div class="time-card old-time">
|
|
2945
|
-
<div class="time-label old">Previous Time</div>
|
|
2946
|
-
<div style="font-size: 18px; font-weight: 600; color: #424242; margin-bottom: 8px;">{{previousDate}}</div>
|
|
2947
|
-
<div style="font-size: 16px; color: #616161;">{{previousTime}}</div>
|
|
2948
|
-
</div>
|
|
2949
|
-
|
|
2950
|
-
<div class="arrow">\u2193</div>
|
|
2951
|
-
|
|
2952
|
-
<div class="time-card new-time">
|
|
2953
|
-
<div class="time-label new">Proposed New Time</div>
|
|
2954
|
-
<div style="font-size: 18px; font-weight: 600; color: #e65100; margin-bottom: 8px;">{{newDate}}</div>
|
|
2955
|
-
<div style="font-size: 16px; color: #f57c00; font-weight: 500;">{{newTime}}</div>
|
|
2956
|
-
</div>
|
|
2957
|
-
</div>
|
|
2958
|
-
|
|
2959
|
-
<div class="divider"></div>
|
|
2567
|
+
<body style="margin: 0; padding: 0; background-color: #f8f6f5; font-family: Georgia, 'Times New Roman', serif;">
|
|
2568
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="background-color: #f8f6f5;">
|
|
2569
|
+
<tr>
|
|
2570
|
+
<td align="center" style="padding: 40px 20px;">
|
|
2571
|
+
<table role="presentation" width="600" cellspacing="0" cellpadding="0" border="0" style="max-width: 600px; background-color: #ffffff; border-radius: 2px; box-shadow: 0 1px 3px rgba(103, 87, 74, 0.08);">
|
|
2960
2572
|
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2573
|
+
<!-- Header -->
|
|
2574
|
+
<tr>
|
|
2575
|
+
<td style="padding: 48px 48px 32px 48px; border-bottom: 1px solid #f0ebe6;">
|
|
2576
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2577
|
+
<tr>
|
|
2578
|
+
<td>
|
|
2579
|
+
<h1 style="margin: 0; font-size: 24px; font-weight: 400; color: #67574A; letter-spacing: 2px; text-transform: uppercase; font-family: Georgia, 'Times New Roman', serif;">MetaEstetics</h1>
|
|
2580
|
+
</td>
|
|
2581
|
+
</tr>
|
|
2582
|
+
</table>
|
|
2583
|
+
</td>
|
|
2584
|
+
</tr>
|
|
2973
2585
|
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2586
|
+
<!-- Action Required Banner -->
|
|
2587
|
+
<tr>
|
|
2588
|
+
<td style="padding: 0;">
|
|
2589
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="background-color: #a48a76;">
|
|
2590
|
+
<tr>
|
|
2591
|
+
<td style="padding: 20px 48px;">
|
|
2592
|
+
<p style="margin: 0; font-size: 13px; font-weight: 600; color: #ffffff; letter-spacing: 1.5px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Action Required</p>
|
|
2593
|
+
</td>
|
|
2594
|
+
</tr>
|
|
2595
|
+
</table>
|
|
2596
|
+
</td>
|
|
2597
|
+
</tr>
|
|
2982
2598
|
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2599
|
+
<!-- Main Content -->
|
|
2600
|
+
<tr>
|
|
2601
|
+
<td style="padding: 40px 48px;">
|
|
2602
|
+
|
|
2603
|
+
<!-- Greeting -->
|
|
2604
|
+
<p style="margin: 0 0 24px 0; font-size: 17px; color: #333333; line-height: 1.6; font-family: Georgia, 'Times New Roman', serif;">
|
|
2605
|
+
Dear {{patientName}},
|
|
2606
|
+
</p>
|
|
2607
|
+
|
|
2608
|
+
<p style="margin: 0 0 32px 0; font-size: 16px; color: #555555; line-height: 1.7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2609
|
+
{{clinicName}} has proposed a new time for your upcoming appointment. Please review the details below and respond at your earliest convenience.
|
|
2610
|
+
</p>
|
|
2611
|
+
|
|
2612
|
+
<!-- Appointment Info Card -->
|
|
2613
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px; background-color: #faf9f7; border-left: 3px solid #a48a76;">
|
|
2614
|
+
<tr>
|
|
2615
|
+
<td style="padding: 24px;">
|
|
2616
|
+
<p style="margin: 0 0 4px 0; font-size: 11px; font-weight: 600; color: #868686; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Procedure</p>
|
|
2617
|
+
<p style="margin: 0 0 16px 0; font-size: 18px; color: #67574A; font-weight: 500; font-family: Georgia, 'Times New Roman', serif;">{{procedureName}}</p>
|
|
2618
|
+
|
|
2619
|
+
<p style="margin: 0 0 4px 0; font-size: 11px; font-weight: 600; color: #868686; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Practitioner</p>
|
|
2620
|
+
<p style="margin: 0; font-size: 15px; color: #333333; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{practitionerName}}</p>
|
|
2621
|
+
</td>
|
|
2622
|
+
</tr>
|
|
2623
|
+
</table>
|
|
2624
|
+
|
|
2625
|
+
<!-- Time Comparison -->
|
|
2626
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px;">
|
|
2627
|
+
<!-- Original Time (Strikethrough) -->
|
|
2628
|
+
<tr>
|
|
2629
|
+
<td style="padding: 20px 24px; background-color: #f5f5f5; border-left: 3px solid #cccccc;">
|
|
2630
|
+
<p style="margin: 0 0 4px 0; font-size: 11px; font-weight: 600; color: #999999; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Original Appointment</p>
|
|
2631
|
+
<p style="margin: 0; font-size: 16px; color: #999999; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; text-decoration: line-through;">{{previousDate}}</p>
|
|
2632
|
+
<p style="margin: 4px 0 0 0; font-size: 14px; color: #999999; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; text-decoration: line-through;">{{previousTime}}</p>
|
|
2633
|
+
</td>
|
|
2634
|
+
</tr>
|
|
2635
|
+
|
|
2636
|
+
<!-- Spacer -->
|
|
2637
|
+
<tr>
|
|
2638
|
+
<td style="height: 12px;"></td>
|
|
2639
|
+
</tr>
|
|
2640
|
+
|
|
2641
|
+
<!-- New Proposed Time -->
|
|
2642
|
+
<tr>
|
|
2643
|
+
<td style="padding: 24px; background-color: #f8f6f5; border-left: 3px solid #00BB38;">
|
|
2644
|
+
<p style="margin: 0 0 4px 0; font-size: 11px; font-weight: 600; color: #00BB38; letter-spacing: 1px; text-transform: uppercase; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Proposed New Time</p>
|
|
2645
|
+
<p style="margin: 0; font-size: 18px; color: #333333; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{newDate}}</p>
|
|
2646
|
+
<p style="margin: 4px 0 0 0; font-size: 15px; color: #67574A; font-weight: 500; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">{{newTime}}</p>
|
|
2647
|
+
</td>
|
|
2648
|
+
</tr>
|
|
2649
|
+
</table>
|
|
2650
|
+
|
|
2651
|
+
<!-- Divider -->
|
|
2652
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px;">
|
|
2653
|
+
<tr>
|
|
2654
|
+
<td style="height: 1px; background-color: #e8e4df;"></td>
|
|
2655
|
+
</tr>
|
|
2656
|
+
</table>
|
|
2657
|
+
|
|
2658
|
+
<!-- Response Instructions -->
|
|
2659
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0" style="margin-bottom: 32px; background-color: #faf9f7;">
|
|
2660
|
+
<tr>
|
|
2661
|
+
<td style="padding: 28px;">
|
|
2662
|
+
<p style="margin: 0 0 16px 0; font-size: 15px; font-weight: 600; color: #67574A; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">How to Respond</p>
|
|
2663
|
+
<p style="margin: 0 0 16px 0; font-size: 14px; color: #555555; line-height: 1.7; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2664
|
+
Open the MetaEstetics app to accept or decline this reschedule request. Your appointment will remain pending until you respond.
|
|
2665
|
+
</p>
|
|
2666
|
+
<table role="presentation" cellspacing="0" cellpadding="0" border="0">
|
|
2667
|
+
<tr>
|
|
2668
|
+
<td style="background-color: #67574A; border-radius: 2px;">
|
|
2669
|
+
<a href="#" style="display: inline-block; padding: 14px 32px; font-size: 13px; font-weight: 600; color: #ffffff; text-decoration: none; letter-spacing: 0.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Open App</a>
|
|
2670
|
+
</td>
|
|
2671
|
+
</tr>
|
|
2672
|
+
</table>
|
|
2673
|
+
</td>
|
|
2674
|
+
</tr>
|
|
2675
|
+
</table>
|
|
2676
|
+
|
|
2677
|
+
<!-- Pending Notice -->
|
|
2678
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2679
|
+
<tr>
|
|
2680
|
+
<td style="padding: 16px 20px; background-color: #fff8f0; border: 1px solid #f0e6d9; border-radius: 2px;">
|
|
2681
|
+
<p style="margin: 0; font-size: 13px; color: #a48a76; line-height: 1.6; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">
|
|
2682
|
+
<strong>Status:</strong> Pending your response. Please respond as soon as possible so we can confirm your appointment.
|
|
2683
|
+
</p>
|
|
2684
|
+
</td>
|
|
2685
|
+
</tr>
|
|
2686
|
+
</table>
|
|
2687
|
+
|
|
2688
|
+
</td>
|
|
2689
|
+
</tr>
|
|
2690
|
+
|
|
2691
|
+
<!-- Footer -->
|
|
2692
|
+
<tr>
|
|
2693
|
+
<td style="padding: 32px 48px; background-color: #faf9f7; border-top: 1px solid #f0ebe6;">
|
|
2694
|
+
<table role="presentation" width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
2695
|
+
<tr>
|
|
2696
|
+
<td>
|
|
2697
|
+
<p style="margin: 0 0 8px 0; font-size: 14px; font-weight: 500; color: #67574A; font-family: Georgia, 'Times New Roman', serif;">{{clinicName}}</p>
|
|
2698
|
+
<p style="margin: 0 0 16px 0; font-size: 13px; color: #868686; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">Premium Aesthetic Services</p>
|
|
2699
|
+
<p style="margin: 0; font-size: 11px; color: #aaaaaa; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;">This is an automated message from MetaEstetics. Please do not reply directly to this email.</p>
|
|
2700
|
+
</td>
|
|
2701
|
+
</tr>
|
|
2702
|
+
</table>
|
|
2703
|
+
</td>
|
|
2704
|
+
</tr>
|
|
2705
|
+
|
|
2706
|
+
</table>
|
|
2707
|
+
</td>
|
|
2708
|
+
</tr>
|
|
2709
|
+
</table>
|
|
2997
2710
|
</body>
|
|
2998
2711
|
</html>
|
|
2999
2712
|
`;
|