This commit is contained in:
Christian Bruckmayer 2014-07-18 08:22:35 +00:00
commit ddeae89d0f
10 changed files with 182 additions and 43 deletions

View file

@ -0,0 +1,21 @@
<html>
<body>
<p>Dear <%= @name %>,</p>
<p>We are very pleased to inform you that your submission <%= @event.title %> has been
accepted for the conference <%= @conference.title %>.</p>
<p>The public page of your submission can be found at:</p>
<p><%= link_to "#{@event.title}", register_conference_path(@conference.short_title) %></p>
<p>If you haven´t already registered for <%= @conference.title %>, please do as soon as possible:</p>
<p><%= link_to "Register for #{@conference.title}", register_conference_path(@conference.short_title) %></p>
<p>Feel free to contact us with any questions or concerns.</p>
<p>We look forward to seeing you there.</p>
<p>Best wishes</p>
<p><%= @conference.title %> Team</p>
</body>
</html>

View file

@ -0,0 +1,18 @@
<html>
<body>
<p>Dear <%= @name %>,</p>
<p>Thank you for the confirmation of <%= @event.title %>. Unfortunately you are
not registered for the conference <%= @conference.title %>. Please register as soon as possible:</p>
<p><%= link_to "Register for #{@conference.title}", register_conference_path(@conference.short_title) %></p>
<p>Feel free to contact us with any questions or concerns.</p>
<p>We look forward to seeing you there.</p>
<p>Best wishes</p>
<p><%= @conference.title %> Team</p>
</body>
</html>

View file

@ -0,0 +1,17 @@
<html>
<body>
<p>Dear <%= @name %>,</p>
<p>Thank you for Registering for the conference <%= @conference.title %>.
Please complete your registration by filling out your travel information.
If you are unable to attend please unregister online:</p>
<p><%= link_to "Unregister for #{@conference.title}", register_conference_path(@conference.short_title) %></p>
<p>Feel free to contact us with any questions or concerns.
We look forward to see you there.</p>
<p>Best wishes</p>
<p><%= @conference.title %> Team</p>
</body>
</html>

View file

@ -0,0 +1,14 @@
<html>
<body>
<p>Dear <%= @name %>,</p>
<p>Thank you for your submission <%= @event.title %> for the conference <%= @conference.title %>.
After careful consideration we are sorry to inform you that your submission
has been rejected.</p>
<p>Best wishes</p>
<p><%= @conference.title %> Team</p>
</body>
</html>