diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 12:36:21 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 12:36:21 -0400 |
commit | a39b0711eefb07fb75294a68d635fb1323d24cf3 (patch) | |
tree | 04f234347bb4fe2a0ce4a83b48c1bb121c620a9b /app/views/quote_mailer | |
parent | 3bf957736f7ba79a0a0f30ace996ba05b0f33f15 (diff) | |
download | thoughts-a39b0711eefb07fb75294a68d635fb1323d24cf3.tar.gz thoughts-a39b0711eefb07fb75294a68d635fb1323d24cf3.tar.bz2 thoughts-a39b0711eefb07fb75294a68d635fb1323d24cf3.zip |
Quotes can be submitted, although it is not encouraged
Diffstat (limited to 'app/views/quote_mailer')
-rw-r--r-- | app/views/quote_mailer/pending_quote_email.html.haml | 12 | ||||
-rw-r--r-- | app/views/quote_mailer/pending_quote_email.text.erb | 15 |
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 @@ | |||
1 | A new quote has been submitted for moderation. | ||
2 | |||
3 | <% unless @quote.submitter.nil? %> | ||
4 | It was submitted by: <%= @quote.submitter %>. | ||
5 | |||
6 | <% end %> | ||
7 | Here is the quote: | ||
8 | |||
9 | --- | ||
10 | |||
11 | <%= @quote.content %> | ||
12 | |||
13 | --- | ||
14 | |||
15 | Posted: <%= @quote.created_at.strftime("%B #{@quote.created_at.day.ordinalize}, %Y at %-I:%M:%S%P") %> | ||