Test.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <EHtml lang="en">
  3. <EHead />
  4. <EPreview>This is a test email sent from your Wiki.js installation.</EPreview>
  5. <EBody :style="main">
  6. <EContainer :style="container">
  7. <ESection :style="box">
  8. <img src="https://static.requarks.io/logo/wikijs-full.svg" height="50" alt="Wiki.js" />
  9. <EHr :style="hr" />
  10. <EText :style="paragraph"> Hello there! </EText>
  11. <EText :style="paragraph"> This is a test email sent from your Wiki.js installation. </EText>
  12. <EHr :style="hr" />
  13. <EText :style="footer"> Wiki.js, an open source project. </EText>
  14. </ESection>
  15. </EContainer>
  16. </EBody>
  17. </EHtml>
  18. </template>
  19. <script setup>
  20. const main = {
  21. backgroundColor: '#f6f9fc',
  22. fontFamily: '-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif',
  23. }
  24. const container = {
  25. backgroundColor: '#ffffff',
  26. margin: '0 auto',
  27. padding: '20px 0 48px',
  28. marginBottom: '64px',
  29. }
  30. const box = {
  31. padding: '0 48px',
  32. }
  33. const hr = {
  34. borderColor: '#e6ebf1',
  35. margin: '20px 0',
  36. }
  37. const paragraph = {
  38. color: '#525f7f',
  39. fontSize: '16px',
  40. lineHeight: '24px',
  41. textAlign: 'left',
  42. }
  43. const footer = {
  44. color: '#8898aa',
  45. fontSize: '12px',
  46. lineHeight: '16px',
  47. }
  48. </script>