1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-28 01:39:29 +02:00
vroom/templates/default/notification.email_text.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

18 lines
312 B
Plaintext

<%
my $url = $self->url_for('/')->to_abs;
$url .= ($url =~ m/\/$/) ? '' : '/';
%>
<%==l 'SOMEONE_JOINED_A_ROOM' %>
<% if ($name && $name ne ''){ %>
<%=l 'PARTICIPANT_NAME' %>: <%== $name %>
<% } %>
<%=l 'WHEN_YOU_ARE_READY' %>
<%== $url . $room %>
<%=l 'HAVE_A_NICE_MEETING' %>
--
<%==l 'EMAIL_SIGN' %>