-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.mjml
69 lines (69 loc) · 1.57 KB
/
example.mjml
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
<mjml>
<mj-head>
<mj-attributes>
<mj-all
font-size="16px"
color="#333"
font-family="-apple-system, BlinkMacSystemFont, Segoe UI, Liberation Sans, Helvetica, Arial, sans-serif"
/>
<mj-class name="signoff" />
<mj-class name="signoff__image-wrapper" />
<mj-class name="signoff__image" />
<mj-class name="signoff__text-wrapper" />
<mj-class name="signoff__text" />
</mj-attributes>
<!-- prettier-ignore -->
<mj-style inline="inline">
.signoff {
}
.signoff__image-wrapper {
}
.signoff__image {
}
.signoff__text-wrapper {
}
.signoff__text {
}
.signoff__closing {
margin-top: 0;
}
.signoff__name {
margin-bottom: 0;
}
.signoff__title {
margin-top: 0;
margin-bottom: 0;
}
.signoff__title2 {
}
.signoff__title3 {
}
.signoff__custom {
}
.signoff__custom p {
margin-top: 0;
}
.signoff__custom a {
color: #800080;
font-weight: bold;
}
</mj-style>
</mj-head>
<mj-body>
<mj-section>
<mj-column>
<mj-signoff
closing="Thank you,"
name="John Q. Public"
title="Your Friendly Neighbor"
image-src="https://picsum.photos/75/100"
image-width="75px"
image-height="100px"
image-alt=""
>
<p><a href="https://example.com">Example, Inc.</a></p>
</mj-signoff>
</mj-column>
</mj-section>
</mj-body>
</mjml>