Merge f11f1fc44a into 609f2fd564
This commit is contained in:
commit
ddeae89d0f
10 changed files with 182 additions and 43 deletions
21
app/views/mailbot/accepted_default_template.html.erb
Normal file
21
app/views/mailbot/accepted_default_template.html.erb
Normal 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>
|
||||
18
app/views/mailbot/confirmed_default_template.html.erb
Normal file
18
app/views/mailbot/confirmed_default_template.html.erb
Normal 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>
|
||||
17
app/views/mailbot/registration_default_template.html.erb
Normal file
17
app/views/mailbot/registration_default_template.html.erb
Normal 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>
|
||||
14
app/views/mailbot/rejected_default_template.html.erb
Normal file
14
app/views/mailbot/rejected_default_template.html.erb
Normal 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>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue