19 lines
747 B
PHP
19 lines
747 B
PHP
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="x-apple-disable-message-reformatting">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>{{ ($subject ?? '') !== '' ? $subject : 'preview' }}</title>
|
|
</head>
|
|
<body style="margin:0; padding:0; background:#0b1220;">
|
|
{{-- Preheader (메일 리스트에서 보이는 짧은 요약 텍스트) --}}
|
|
<div style="display:none; max-height:0; overflow:hidden; opacity:0; color:transparent; mso-hide:all;">
|
|
{{ \Illuminate\Support\Str::limit(strip_tags(($body_text ?? $body ?? $subject ?? '')), 80) }}
|
|
</div>
|
|
|
|
@includeIf("mail.skins.$skin_key", get_defined_vars())
|
|
</body>
|
|
</html>
|