1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-28 01:39:29 +02:00
vroom/templates/default/notification.email_html.ep
Daniel Berteaud b3a613ddc7 Change the way notifications are triggered
And send the name of the participant in the notification email (only if name is asked before you can join)
2014-05-21 18:08:43 +02:00

32 lines
541 B
Plaintext

<%
my $url = $self->url_for('/')->to_abs;
$url .= ($url =~ m/\/$/) ? '' : '/';
%>
<p>
<%=l 'SOMEONE_JOINED_A_ROOM' %>
</p>
<% if ($name && $name ne ''){ %>
<p>
<%=l 'PARTICIPANT_NAME' %>: <%= $name %>
</p>
<% } %>
<p>
<%=l 'WHEN_YOU_ARE_READY' %>
<center>
<h1>
<a href="<%= $url . $room %>">
<%= $url . $room %>
</a>
</h1>
</center>
</p>
<br>
<p>
<%=l 'HAVE_A_NICE_MEETING' %>
</p>
<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">
&mdash;
<br>
<%=l 'EMAIL_SIGN' %>
</p>