email.blade.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!--
  5. ** 본 메일 폼은 원본이며 실제 사용은 form 안에 있는 email.blade.php 를 사용합니다.
  6. ** 아래 주소에서 변환이 가능합니다. link, script 주소는 삭제해주세요.
  7. https://templates.mailchimp.com/resources/inline-css/
  8. -->
  9. <meta charset="utf-8"/>
  10. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  11. <title>{{ config('site_title', config('app.name')) }}</title>
  12. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"/>
  13. <link rel="preconnect" href="https://fonts.googleapis.com"/>
  14. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
  15. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&display=swap" rel="stylesheet">
  16. <style>
  17. #app {
  18. width: 100%;
  19. background: #eee;
  20. padding: 20px;
  21. }
  22. #app .container {
  23. max-width: 800px;
  24. margin: 0 auto;
  25. }
  26. header {
  27. background: #1d618c;
  28. height: 50px;
  29. line-height: 50px;
  30. text-align: center;
  31. border: 1px solid #aaa;
  32. border-width: 1px 1px 0 1px;
  33. }
  34. header a {
  35. color: #fff;
  36. font-family: "Open-Sans-Extrabold";
  37. font-size: 21px;
  38. font-weight: bold;
  39. text-decoration: none;
  40. }
  41. header a:hover,
  42. header a:focus,
  43. header a:active {
  44. text-decoration: underline;
  45. }
  46. main {
  47. display: block;
  48. background: #fff;
  49. min-height: 500px;
  50. border: 1px solid #aaa;
  51. padding: 13px;
  52. }
  53. footer {
  54. padding: 13px;
  55. background: #2f2f2f;
  56. color: #adadad;
  57. font-size: 12px;
  58. border: 1px solid #aaa;
  59. border-width: 0 1px 1px 1px;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div id="app">
  65. <div class="container">
  66. <header>
  67. <a href="{{ url('/') }}">
  68. {{ strtoupper(config('site_title', config('app.name'))) }}
  69. </a>
  70. </header>
  71. <main>
  72. @isset($content)
  73. {!! $content !!}
  74. @endisset
  75. </main>
  76. <footer>
  77. ※ 본 메일은 발신전용으로 회신되지 않습니다. 문의사항은 고객지원을 이용해 주시기 바랍니다.
  78. <ul class="list-unstyled mt-1">
  79. <li>{{ config('company_name') }} | 대표자 : {{ config('company_owner') }} | 정보관리책임자 : {{ config('company_admin_email') }}</li>
  80. <li>사업자등록번호 : {{ config('company_reg_no') }} | 통신판매신고번호 : {{ config('company_retail_sale_no') }}</li>
  81. <li>대표전화 : {{ config('company_phone') }} | 문의사항 : {{ config('company_admin_email') }}</li>
  82. <li>주소 : {{ config('company_address') }} | 우편번호 : {{ config('company_zip_code') }}</li>
  83. </ul>
  84. <cite>Copyright ⓒ {{ config('site_title', config('app.name')) }} Corp. All Right Reserved.</cite>
  85. </footer>
  86. </div>
  87. </div>
  88. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
  89. </body>
  90. </html>