-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathemail-template.html
More file actions
980 lines (942 loc) · 35.7 KB
/
email-template.html
File metadata and controls
980 lines (942 loc) · 35.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="x-apple-disable-message-reformatting" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>이메일 전달용</title>
<style>
body,
table,
td,
p,
ul,
li {
margin: 0;
padding: 0;
font-family: 'Pretendard';
}
@font-face {
font-family: 'Pretendard';
font-style: normal;
font-weight: 400;
src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2')
format('woff2');
}
@font-face {
font-family: 'Pretendard';
font-style: normal;
font-weight: 500;
src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2')
format('woff2');
}
@font-face {
font-family: 'Pretendard';
font-style: normal;
font-weight: 700;
src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff2/Pretendard-Bold.woff2')
format('woff2');
}
@font-face {
font-family: 'Pretendard';
font-style: normal;
font-weight: 800;
src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff2/Pretendard-ExtraBold.woff2')
format('woff2');
}
@media screen and (max-width: 640px) {
.container {
width: 100% !important;
}
.px {
padding-left: 16px !important;
padding-right: 16px !important;
}
.hero-h {
height: 240px !important;
}
.hero-title {
font-size: 22px !important;
}
}
</style>
</head>
<body style="margin: 0; padding: 0">
<table
role="presentation"
width="100%"
cellpadding="0"
cellspacing="0"
style="background: #ffffff"
>
<tr>
<td align="center">
<table
role="presentation"
width="600"
cellpadding="0"
cellspacing="0"
class="container"
style="width: 600px; max-width: 600px; background: #ffffff"
>
<tr>
<td style="padding: 0; margin: 0">
<table
role="presentation"
width="600"
cellpadding="0"
cellspacing="0"
style="width: 600px; max-width: 600px"
>
<tr>
<td
background="https://kr.object.ncloudstorage.com/starlight-s3/email/order_1.png"
width="600"
height="350"
style="
width: 600px;
height: 350px;
background-image: url('https://kr.object.ncloudstorage.com/starlight-s3/email/order_1.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 0;
height: 350px;
"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
width="100%"
height="100%"
>
<tr>
<td
class="px"
style="
vertical-align: bottom;
padding-bottom: 60px;
padding-left: 36px;
"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
>
<tr>
<td
bgcolor="#ffffff"
style="border-radius: 8px"
>
<a
href="https://www.starlight-official.co.kr/"
target="_blank"
style="
display: inline-block;
padding: 10px 32px;
font-size: 16px;
font-weight: 600;
color: #3a404a;
text-decoration: none;
"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
style="border-collapse: collapse"
>
<tr>
<td
style="
vertical-align: middle;
padding: 0;
"
>
실제 VC/AC 피드백 받기
</td>
<td
style="
vertical-align: middle;
padding: 0;
padding-left: 4px;
"
>
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/arrow.png"
alt="arrow"
width="20"
height="20"
style="display: block; border: 0"
/>
</td>
</tr>
</table>
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- 본문 -->
<tr>
<td
class="px"
style="
padding: 48px 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<p style="margin: 0; font-size: 16px; font-weight: 700">
안녕하세요. 스타라이트입니다.
</p>
<p
style="margin: 32px 0 0 0; font-size: 16px; font-weight: 500"
>
2월에 다가오는 예창패·초기패 준비하시면서 “이 상태로 제출해도
괜찮은지” <br />한 번쯤 고민해보신 적 있으실 것 같아 이렇게
메일 드립니다.
</p>
<p
style="margin: 32px 0 0 0; font-size: 16px; font-weight: 500"
>
스타라이트는
</p>
<p
style="
margin: 0;
font-size: 16px;
font-weight: 700;
color: #6f55ff;
"
>
작성하신 사업계획서를 ‘심사 기준 관점에서’ 점검하고 완성도를
높이는 플랫폼
<span style="color: #000000; font-weight: 500">입니다.</span>
</p>
<ul
style="
margin: 32px 0 0 0;
padding-left: 28px;
font-size: 16px;
font-weight: 500;
"
>
<li>
사업계획서의 정량화된 점수를 확인할 수 있는
<span style="color: #6f55ff; font-weight: 700"
>AI 리포트</span
>
</li>
<li style="margin: 4px 0 0 0">
필요 시, 실제 창업·심사 경험이 있는
<span style="color: #6f55ff; font-weight: 700"
>전문가의 피드백</span
>까지
<br />
한 흐름으로 이어지는 구조로 설계했습니다.
</li>
</ul>
<p
style="margin: 32px 0 0 0; font-size: 16px; font-weight: 500"
>
예창패·초기패 제출 전에 사업계획서 완성도를 한 번 점검해보는
<br />
용도로 가볍게 사용해보셔도 괜찮을 것 같아 안내드립니다.
</p>
<p
style="margin: 32px 0 0 0; font-size: 16px; font-weight: 700"
>
📢 오직 지금만!
<span style="color: #6f55ff">2월 한정 무료 프로모션 </span
>(~2/28) 🔥
</p>
<p style="margin: 0; font-size: 16px; font-weight: 600">
기간: ~ 2026년 2월 28일 오후 11시 59분까지 <br />
혜택: AI 리포트 + 전문가 피드백 전체 무료 제공 <br />
참여: 아래 링크 접속 후 바로 이용 가능
</p>
<p style="margin: 32px 0 0 0">
👉
<a
href="https://www.starlight-official.co.kr/"
target="_blank"
style="
color: #6f55ff;
text-decoration: underline;
font-weight: 600;
font-size: 16px;
text-decoration-style: solid;
"
>
[스타라이트 바로가기 링크]
</a>
</p>
<p style="margin: 0; font-size: 16px; font-weight: 500">
부담 없이 체험해 보시고, 합격에 한 걸음 더 다가가세요. <br />
스타라이트는 모든 창업팀의 성장을 응원합니다!
</p>
</td>
</tr>
<!-- 슬로건 섹션 -->
<tr>
<td
class="px"
style="
padding: 48px 28px 0 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<p
style="
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.4px;
"
>
🎯 사업계획서의 기준을 만드는
<span style="color: #6f55ff">스타라이트</span>
</p>
</td>
</tr>
<!-- 이미지 섹션 -->
<tr>
<td
style="
padding: 24px 28px 48px 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<table
role="presentation"
width="100%"
cellpadding="0"
cellspacing="0"
>
<tr>
<td style="padding: 0">
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/order_2.png"
alt=""
width="544"
height="320"
style="
display: block;
width: 100%;
max-width: 544px;
height: auto;
border: 0;
"
/>
</td>
</tr>
</table>
<p
style="
margin: 24px 0 0 0;
font-size: 16px;
font-weight: 500;
font-family: Pretendard;
color: #000000;
"
>
스타라이트는 이미 작성한 사업계획서를 심사 기준 관점에서
점검하고,
</p>
<p
style="
margin: 4px 0 0 0;
font-size: 16px;
font-weight: 500;
font-family: Pretendard;
color: #000000;
"
>
AI 분석과 전문가 피드백으로 완성도를 보완하는 플랫폼입니다.
</p>
</td>
</tr>
<tr>
<td
class="px"
style="
padding: 48px 28px 0 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<p
style="
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.4px;
"
>
🖊️ <span style="color: #6f55ff">심사 기준</span>에 맞춰
작성하는 사업계획서
</p>
</td>
</tr>
<!-- 이미지 섹션 -->
<tr>
<td style="padding: 24px 28px 48px 28px; font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"">
<table
role="presentation"
width="100%"
cellpadding="0"
cellspacing="0"
>
<tr>
<td style="padding: 0">
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/order_3.png"
alt=""
width="544"
height="320"
style="
display: block;
width: 100%;
max-width: 544px;
height: auto;
border: 0;
"
/>
</td>
</tr>
</table>
<p
style="
margin: 24px 0 0 0;
font-size: 16px;
font-weight: 700;
color: #000000;
"
>
❓ 사업계획서는
<span style="color: #6f55ff">어떤 내용을 어느 깊이까지</span>
써야 할까요?
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
심사 기준이 명확하지 않다 보니 방향을 잡기 어렵고,
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
항목마다 어디까지 써야 하는지 몰라 말투 하나까지 계속 수정하게
됩니다.
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
스타라이트의 사업계획서 작성 페이지에서는
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
<span style="font-weight: 700">심사 기준을 바탕</span>으로
<span style="font-weight: 700"
>항목별로 꼭 필요한 핵심 내용과 작성 수준을 정리</span
>해
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
무엇을 어느 정도까지 작성해야 하는지 명확하게 안내합니다.
</p>
</td>
</tr>
<tr>
<td
class="px"
style="
padding: 48px 28px 0 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<p
style="
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.4px;
"
>
📊 내 사업계획서는 지금 몇 점일까요?
<span style="color: #6f55ff">AI 리포트</span>로 분석합니다.
</p>
</td>
</tr>
<!-- 이미지 섹션 -->
<tr>
<td style="padding: 24px 28px 48px 28px; font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"">
<table
role="presentation"
width="100%"
cellpadding="0"
cellspacing="0"
>
<tr>
<td style="padding: 0">
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/order_4.png"
alt=""
width="544"
height="320"
style="
display: block;
width: 100%;
max-width: 544px;
height: auto;
border: 0;
"
/>
</td>
</tr>
</table>
<p
style="
margin: 24px 0 0 0;
font-size: 16px;
font-weight: 700;
color: #000000;
"
>
❓
<span style="color: #6f55ff">왜 떨어졌는지</span>
알 수 없으신가요?
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
실제 멘토링이나 심사 과정에서는 구체적인 피드백 없이
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
합·불 결과만 전달되는 경우가 많습니다. 어떤 기준에서
부족했는지
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
어떻게 보완해야 하는지 알 수 없어 같은 실수를 반복하게 되죠.
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
스타라이트의 AI 리포트는 작성된 사업계획서를 심사 항목
기준으로 분석해
</p>
<p style="font-size: 16px; font-weight: 700; margin: 4px 0 0 0">
항목별 점수와 함께 강점과 보완 포인트를 리포트로 제공<span
style="font-weight: 500"
>합니다.</span
>
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
현재
<span style="font-weight: 700"
>사업계획서가 심사 기준에 얼마나 근접했는지 객관적으로
확인</span
>할 수 있습니다.
</p>
</td>
</tr>
<tr>
<td
class="px"
style="
padding: 48px 28px 0 28px;
font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"
>
<p
style="
margin: 0;
font-size: 20px;
font-weight: 700;
letter-spacing: -0.4px;
"
>
🧑🏻💻 실질적 개선 포인트를 짚는
<span style="color: #6f55ff">전문가 심층 피드백</span>
</p>
</td>
</tr>
<!-- 이미지 섹션 -->
<tr>
<td style="padding: 24px 28px 48px 28px; font-family: Pretendard;
color: #000000;
font-style: normal;
line-height: 1.5;
letter-spacing: -0.16px;
"">
<table
role="presentation"
width="100%"
cellpadding="0"
cellspacing="0"
>
<tr>
<td style="padding: 0">
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/order_5.png"
alt=""
width="544"
height="320"
style="
display: block;
width: 100%;
max-width: 544px;
height: auto;
border: 0;
"
/>
</td>
</tr>
</table>
<p
style="
margin: 24px 0 0 0;
font-size: 16px;
font-weight: 700;
color: #000000;
"
>
❓ AI 리포트만으로 충분할까요?
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
실제 심사 과정에서는 구체적으로 다듬어줄 멘토를 찾기 어렵고,
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
설령 피드백을 받아도 형식적인 코멘트에 그치는 경우가 많습니다.
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
왜 떨어졌는지, 무엇을 어떻게 고쳐야 하는지 알 수 없어 같은
실수를 반복하게 됩니다.
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
그래서 스타라이트는 전문가 멘토 연결을 만들었습니다.
</p>
<p
style="font-size: 16px; font-weight: 500; margin: 32px 0 0 0"
>
스타라이트는
<span style="font-weight: 700; color: #6f55ff"
>창업 및 실제 심사 경험을 보유한 전문가로만 구성된 멘토
풀</span
>을 통해,
</p>
<p style="font-size: 16px; font-weight: 500; margin: 4px 0 0 0">
<span style="font-weight: 700; color: #6f55ff"
>AI 리포트를 기반으로 사업계획서의 구조·논리·보완 방향을
점검</span
>합니다.
</p>
</td>
</tr>
<tr>
<td style="padding: 0; margin: 0">
<table
role="presentation"
width="600"
cellpadding="0"
cellspacing="0"
style="width: 600px; max-width: 600px"
>
<tr>
<td
background="https://kr.object.ncloudstorage.com/starlight-s3/email/order_6.png"
width="600"
height="360"
style="
width: 600px;
height: 360px;
background-image: url('https://kr.object.ncloudstorage.com/starlight-s3/email/order_6.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
padding: 0;
height: 360px;
"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
width="100%"
height="100%"
>
<tr>
<td
class="px"
style="vertical-align: middle; text-align: center"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
style="padding-top: 180px; padding-left: 218px"
>
<tr>
<td
bgcolor="#6F55FF"
style="border-radius: 8px"
>
<a
href="https://www.starlight-official.co.kr/"
target="_blank"
style="
display: inline-block;
padding: 10px 32px;
font-size: 16px;
font-weight: 600;
letter-spacing: -0.16px;
line-height: 150%;
color: #ffffff;
text-decoration: none;
"
>
서비스 바로가기
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!--[if mso]>
</v:textbox>
</v:rect>
<![endif]-->
</td>
</tr>
</table>
</td>
</tr>
<!-- Footer -->
<tr>
<td class="px" style="padding: 48px 28px; text-align: center">
<table
role="presentation"
cellpadding="0"
cellspacing="0"
style="margin: 0 auto"
>
<tr>
<!-- 링크 아이콘 -->
<td style="padding: 0 24px 0 0">
<a
href="https://www.starlight-official.co.kr/"
target="_blank"
style="display: block; text-decoration: none"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
width="32"
height="32"
style="
width: 32px;
height: 32px;
background-color: #191f28;
border-radius: 50%;
"
>
<tr>
<td
style="
width: 32px;
height: 32px;
text-align: center;
vertical-align: middle;
padding: 0;
"
>
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/link.png"
alt="link"
width="20"
height="20"
style="
display: block;
margin: 0 auto;
border: 0;
"
/>
</td>
</tr>
</table>
</a>
</td>
<!-- Instagram 아이콘 -->
<td style="padding: 0">
<a
href="https://www.instagram.com/starlight.co.kr/"
target="_blank"
style="display: block; text-decoration: none"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
width="32"
height="32"
style="
width: 32px;
height: 32px;
background-color: #191f28;
border-radius: 50%;
"
>
<tr>
<td
style="
width: 32px;
height: 32px;
text-align: center;
vertical-align: middle;
padding: 0;
"
>
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/insta.png"
alt="instagram"
width="20"
height="20"
style="
display: block;
margin: 0 auto;
border: 0;
"
/>
</td>
</tr>
</table>
</a>
</td>
<!-- 이메일 아이콘 -->
<td style="padding: 0 0 0 24px">
<a
href="mailto:support@starlight-official.co.kr"
style="display: block; text-decoration: none"
>
<table
role="presentation"
cellpadding="0"
cellspacing="0"
width="32"
height="32"
style="
width: 32px;
height: 32px;
background-color: #191f28;
border-radius: 50%;
"
>
<tr>
<td
style="
width: 32px;
height: 32px;
text-align: center;
vertical-align: middle;
padding: 0;
"
>
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/mail.png"
alt="email"
width="20"
height="20"
style="
display: block;
margin: 0 auto;
border: 0;
"
/>
</td>
</tr>
</table>
</a>
</td>
</tr>
</table>
<p
style="
margin: 36px 0 0 0;
font-size: 12px;
font-weight: 400;
color: #6c727e;
"
>
© Copyright 2026. starlight All Rights Reserved
</p>
<!-- 로고 -->
<table
role="presentation"
cellpadding="0"
cellspacing="0"
style="margin: 12px auto 0; width: auto"
>
<tr>
<td>
<img
src="https://kr.object.ncloudstorage.com/starlight-s3/email/starlight.png"
alt="starlight"
width="79"
height="18"
style="display: block; border: 0"
/>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>