about summary refs log tree commit diff stats
path: root/app/views/quote_mailer
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/quote_mailer')
-rw-r--r--app/views/quote_mailer/pending_quote_email.html.haml12
-rw-r--r--app/views/quote_mailer/pending_quote_email.text.erb15
2 files changed, 27 insertions, 0 deletions
diff --git a/app/views/quote_mailer/pending_quote_email.html.haml b/app/views/quote_mailer/pending_quote_email.html.haml new file mode 100644 index 0000000..fff825d --- /dev/null +++ b/app/views/quote_mailer/pending_quote_email.html.haml
@@ -0,0 +1,12 @@
1%p
2 A new quote has been submitted for moderation.
3- unless @quote.submitter.nil?
4 %p
5 It was submitted by:
6 = succeed "." do
7 = @quote.submitter
8%p The body of the quote:
9%pre= @quote.content
10%p
11 Submitted:
12 = @quote.created_at.strftime("%B #{@quote.created_at.day.ordinalize}, %Y at %-I:%M:%S%P")
diff --git a/app/views/quote_mailer/pending_quote_email.text.erb b/app/views/quote_mailer/pending_quote_email.text.erb new file mode 100644 index 0000000..818fc4a --- /dev/null +++ b/app/views/quote_mailer/pending_quote_email.text.erb
@@ -0,0 +1,15 @@
1A new quote has been submitted for moderation.
2
3<% unless @quote.submitter.nil? %>
4It was submitted by: <%= @quote.submitter %>.
5
6<% end %>
7Here is the quote:
8
9---
10
11<%= @quote.content %>
12
13---
14
15Posted: <%= @quote.created_at.strftime("%B #{@quote.created_at.day.ordinalize}, %Y at %-I:%M:%S%P") %>