Skip to content

Commit 87786fc

Browse files
committed
feat(templates): add email invitation templates for companies in English and Portuguese (33)
1 parent ed14859 commit 87786fc

File tree

3 files changed

+659
-2
lines changed

3 files changed

+659
-2
lines changed
Lines changed: 331 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,331 @@
1+
<!doctype html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<!-- utf-8 works for most cases -->
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<!-- Forcing initial-scale shouldn't be necessary -->
9+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
10+
<!-- Use the latest (edge) version of IE rendering engine -->
11+
<title>SINFO {{.Edition}} - Participation Invitation!</title>
12+
<!-- The title tag shows in email notifications, like Android 4.4. -->
13+
<!-- Please use an inliner tool to convert all CSS to inline as inpage or external CSS is removed by email clients -->
14+
<!-- important in CSS is used to prevent the styles of currently inline CSS from overriding the ones mentioned in media queries when corresponding screen sizes are encountered -->
15+
16+
<!-- CSS Reset -->
17+
<style type="text/css">
18+
/* What it does: Remove spaces around the email design added by some email clients. */
19+
/* Beware: It can remove the padding / margin and add a background color to the compose a reply window. */
20+
html,
21+
body {
22+
margin: 0 !important;
23+
padding: 0 !important;
24+
height: 100% !important;
25+
width: 100% !important;
26+
}
27+
28+
/* What it does: Stops email clients resizing small text. */
29+
* {
30+
-ms-text-size-adjust: 100%;
31+
-webkit-text-size-adjust: 100%;
32+
}
33+
34+
/* What it does: Forces Outlook.com to display emails full width. */
35+
.ExternalClass {
36+
width: 100%;
37+
}
38+
39+
/* What is does: Centers email on Android 4.4 */
40+
div[style*="margin: 16px 0"] {
41+
margin: 0 !important;
42+
}
43+
44+
/* What it does: Stops Outlook from adding extra spacing to tables. */
45+
table,
46+
td {
47+
mso-table-lspace: 0pt !important;
48+
mso-table-rspace: 0pt !important;
49+
}
50+
51+
/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */
52+
table {
53+
border-spacing: 0 !important;
54+
border-collapse: collapse !important;
55+
table-layout: fixed !important;
56+
margin: 0 auto !important;
57+
}
58+
59+
table table table {
60+
table-layout: auto;
61+
}
62+
63+
/* What it does: Uses a better rendering method when resizing images in IE. */
64+
img {
65+
-ms-interpolation-mode: bicubic;
66+
}
67+
68+
/* What it does: Overrides styles added when Yahoo's auto-senses a link. */
69+
.yshortcuts a {
70+
border-bottom: none !important;
71+
}
72+
73+
/* What it does: Another work-around for iOS meddling in triggered links. */
74+
a[x-apple-data-detectors] {
75+
color: inherit !important;
76+
}
77+
78+
a:link {
79+
text-decoration: none;
80+
}
81+
82+
a:visited {
83+
text-decoration: none;
84+
}
85+
</style>
86+
87+
<!-- Progressive Enhancements -->
88+
<style type="text/css">
89+
/* What it does: Hover styles for buttons */
90+
.button-td,
91+
.button-a {
92+
transition: all 100ms ease-in;
93+
}
94+
95+
.button-td:hover,
96+
.button-a:hover {
97+
background: #555555 !important;
98+
border-color: #555555 !important;
99+
}
100+
101+
/* Media Queries */
102+
@media screen and (max-width: 600px) {
103+
104+
.email-container {
105+
width: 100% !important;
106+
}
107+
108+
/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */
109+
.fluid,
110+
.fluid-centered {
111+
max-width: 100% !important;
112+
height: auto !important;
113+
margin-left: auto !important;
114+
margin-right: auto !important;
115+
}
116+
117+
/* And center justify these ones. */
118+
.fluid-centered {
119+
margin-left: auto !important;
120+
margin-right: auto !important;
121+
}
122+
123+
/* What it does: Forces table cells into full-width rows. */
124+
.stack-column,
125+
.stack-column-center {
126+
display: block !important;
127+
width: 100% !important;
128+
max-width: 100% !important;
129+
direction: ltr !important;
130+
}
131+
132+
/* And center justify these ones. */
133+
.stack-column-center {
134+
text-align: center !important;
135+
}
136+
137+
/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */
138+
.center-on-narrow {
139+
text-align: center !important;
140+
display: block !important;
141+
margin-left: auto !important;
142+
margin-right: auto !important;
143+
float: none !important;
144+
}
145+
146+
table.center-on-narrow {
147+
display: inline-block !important;
148+
}
149+
150+
}
151+
</style>
152+
</head>
153+
154+
<body yahoo="yahoo">
155+
<table cellpadding="0" cellspacing="0" border="0" height="100%"
156+
style="border-collapse:collapse; border: 4px solid #1c2b70;">
157+
<tr>
158+
<td>
159+
<center style="width: 100%;">
160+
161+
<!-- Visually Hidden Preheader Text : BEGIN -->
162+
<div
163+
style="display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;">
164+
On behalf of the team organizing SINFO we would be pleased if you would accept our invitation to participate
165+
in our event. SINFO is a college student and non-profitable organization responsible for the planning of one
166+
of the biggest Tech events in Portugal. It’s an annual conference that takes place in Lisbon. </div>
167+
<!-- Visually Hidden Preheader Text : END -->
168+
169+
<!-- Email Header : BEGIN -->
170+
<!-- Email Header : END -->
171+
172+
<!-- Email Body : BEGIN -->
173+
<table cellspacing="0" cellpadding="0" border="0" align="center" bgcolor="#ffffff" width="600"
174+
class="email-container">
175+
176+
<!-- Hero Image, Flush : BEGIN -->
177+
<tr style="width: 100%;">
178+
<td class="full-width-image"><img
179+
src="https://sinfo.ams3.cdn.digitaloceanspaces.com/static/{{.Edition}}-sinfo/templates/images/headerSINFO{{.Edition}}.png"
180+
alt="/static/{{.Edition}}-sinfo/templates/images/headerSINFO{{.Edition}}.png" border="0" align="center"
181+
style="display: block; margin: 100; text-align: center; background-position: center center !important; background-size: cover !important; max-width: 100%;">
182+
</td>
183+
</tr>
184+
<!-- Hero Image, Flush : END -->
185+
186+
<!-- 1 Column Text : BEGIN -->
187+
<tr> </tr>
188+
</table>
189+
<table cellspacing="0" cellpadding="0" border="0" align="center" bgcolor="#ffffff" width="600"
190+
class="email-container">
191+
<tr>
192+
<td
193+
style="padding: 40px; text-align: left; font-family: sans-serif; font-size: 13px; mso-height-rule: exactly; line-height: 20px; color: black; ">
194+
<p style="text-align: justify; text-justify: inter-word;"><strong>SINFO is honored to invite {{.Company}}
195+
to participate in SINFO {{.Edition}}.</strong></p>
196+
197+
<p style="text-align: justify; text-justify: inter-word;">
198+
SINFO proudly presents the {{.EditionOrdinal}} edition of one of Portugal's largest tech events. We're excited to
199+
once again host the event in Lisbon, a vibrant capital that continues to foster a culture of innovation and entrepreneurship.
200+
This year, we anticipate welcoming around 5000 Tech enthusiasts, including students, engineers, sponsors, and partners.
201+
</p>
202+
203+
<p style="text-align: justify; text-justify: inter-word;">
204+
We would be very honored to have {{.Company}} join us in the next edition.
205+
</p> <!-- Button : Begin -->
206+
207+
<!-- Button : END -->
208+
</td>
209+
</tr>
210+
<!-- 1 Column Text : BEGIN -->
211+
212+
<!-- Background Image with Text : BEGIN -->
213+
214+
<tr>
215+
<td
216+
style="padding: 40px; text-align: left; font-family: sans-serif; font-size: 12.5px; mso-height-rule: exactly; line-height: 20px; color: white; background-color: #1c2b70;">
217+
<div>
218+
<table>
219+
<tr>
220+
<td valign="top">
221+
<div
222+
style="background-color:white;color:black;font-size:12px;font-weight:bold;text-align:center; padding: 4px 30px 4px 30px; ">
223+
Event
224+
</div>
225+
</td>
226+
<td style="font-size:14px;text-align:left;padding-left:15px; color: white;" valign="middle">
227+
<b>SINFO {{.Edition}}</b>
228+
</td>
229+
</tr>
230+
<tr>
231+
<td>&nbsp;</td>
232+
</tr>
233+
<tr>
234+
<td valign="top">
235+
<div
236+
style="background-color:white;color:black;font-size:12px;font-weight:bold;text-align:center;padding: 4px 30px 4px 30px;">
237+
When
238+
</div>
239+
</td>
240+
<td style="font-size:14px;text-align:left;padding-left:15px; color: white;" valign="middle">
241+
<b
242+
>The week from {{.EventStartDay}} to
243+
{{.EventEndDay}} of {{.EventEndMonth}} of
244+
{{.EventEndYear}}</b
245+
>
246+
</td>
247+
</tr>
248+
<tr>
249+
<td>&nbsp;</td>
250+
</tr>
251+
<tr>
252+
<td valign="top">
253+
<div
254+
style="background-color:white;color:black;font-size:12px;font-weight:bold;text-align:center; padding: 4px 30px 4px 30px;">
255+
Where
256+
</div>
257+
</td>
258+
<td style="font-size:14px;text-align:left;padding-left:15px; color: white;" valign="middle">
259+
<b>Técnico Innovation Center (TIC), Saldanha, Lisbon, Portugal</b>
260+
</td>
261+
</tr>
262+
</table>
263+
</div>
264+
</td>
265+
</tr>
266+
<tr>
267+
<td
268+
style="padding: 40px; text-align: left; font-family: sans-serif; font-size: 13px; mso-height-rule: exactly; line-height: 20px; color: black;">
269+
<p style="text-align: justify; text-justify: inter-word;">As a result of continuous improvement and
270+
innovation, we will present new and better opportunities to create a strong partnership, taking
271+
into account the expected turnout.
272+
</p>
273+
<p style="text-align: justify; text-justify: inter-word;">
274+
You can visit our <a href="https://sinfo.org">website</a> to find out more information about the event,
275+
as well as our <a href="https://sponsors.sinfo.org">sponsors' website</a> to read the conditions of
276+
participation in the event.
277+
</p>
278+
<br>
279+
<br>
280+
<!-- Button : Begin -->
281+
<table cellspacing="0" cellpadding="0" border="0" align="center" style="margin: auto">
282+
<tr>
283+
<td style="border-radius: 3px; background: #1c2b70;; text-align: center;" class="button-td"><a
284+
href="https://sponsors.sinfo.org/"
285+
style="background: #1c2b70;; border: 15px solid #1c2b70;; padding: 0 10px;color: #ffffff; font-family: sans-serif; font-size: 13px; line-height: 1.1; text-align: center; text-decoration: none; display: block; border-radius: 3px; font-weight: bold;"
286+
class="button-a">
287+
<!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;<![endif]-->
288+
Visit our sponsors' website
289+
<!--[if mso]>&nbsp;&nbsp;&nbsp;&nbsp;<![endif]-->
290+
</a></td>
291+
</tr>
292+
</table>
293+
<!-- Button : END -->
294+
</td>
295+
</tr>
296+
<tr>
297+
<td class="full-width-image"><img
298+
src="https://static.sinfo.org/static/33-sinfo/templates/images/venue.jpg"
299+
alt="alt_text" border="0" align="center"
300+
style="display: block; margin: 100; text-align: center; background-position: center center !important; background-size: cover !important; max-width: 100%;">
301+
</td>
302+
</tr>
303+
<tr>
304+
<td
305+
style="padding: 40px; text-align: left; font-family: sans-serif; font-size: 13px; mso-height-rule: exactly; line-height: 20px; color: black;">
306+
<p style="text-align: justify; text-justify: inter-word;">
307+
We are fully available to meet with {{.Company}} at a time that suits you best. This way, we can present
308+
what's new for this edition and share some data from previous editions.</p>
309+
310+
<p style="text-align: justify; text-justify: inter-word;">
311+
If you have any questions or would like to schedule a meeting, please do not hesitate to contact me
312+
via email or phone (see email signature).
313+
</p>
314+
<!-- Button : Begin -->
315+
<!-- Button : END -->
316+
</td>
317+
</tr>
318+
</table>
319+
320+
<!-- Email Body : END -->
321+
322+
<!-- Email Footer : BEGIN -->
323+
<!-- Email Footer : END -->
324+
325+
</center>
326+
</td>
327+
</tr>
328+
</table>
329+
</body>
330+
331+
</html>

0 commit comments

Comments
 (0)