diff --git a/app/views/receipt_mailer/receipt_email.html.erb b/app/views/receipt_mailer/receipt_email.html.erb index 25efb956..ad4f5bfd 100644 --- a/app/views/receipt_mailer/receipt_email.html.erb +++ b/app/views/receipt_mailer/receipt_email.html.erb @@ -24,7 +24,7 @@ The information we have on record is listed below.

ORCID iD: <%= @user.orcid %>

-

+

Thesis title: <%= @thesis.title %>
Name as it appears on your thesis: <%= @user.preferred_name %>
Co-author: <%= @thesis.coauthors %>
@@ -34,9 +34,10 @@ The information we have on record is listed below.

Copyright holder: <%= @thesis.copyright.holder %>
License: <%= @thesis.license_id? ? @thesis.license.display_description : "" %>
Thesis supervisors: <%= @thesis.advisors.map { |a| a.name }.join('; ') %>
-Abstract: <%= @thesis.abstract %>
+Abstract:
+<%= simple_format(@thesis.abstract, {}, wrapper_tag: "p") %> Notes: <%= @thesis.author_note %>
-

+

Let us know if you have any questions. And again, congratulations on finishing (or almost finishing) your degree!

diff --git a/test/fixtures/receipt_mailer/receipt_email b/test/fixtures/receipt_mailer/receipt_email index f144efed..64773711 100644 --- a/test/fixtures/receipt_mailer/receipt_email +++ b/test/fixtures/receipt_mailer/receipt_email @@ -34,7 +34,7 @@ The information we have on record is listed below.

ORCID iD:

-

+

Thesis title: MyString
Name as it appears on your thesis: Robot, Admin
Co-author: My co-author
@@ -44,9 +44,10 @@ The information we have on record is listed below.

Copyright holder: MIT
License: No Creative Commons License
Thesis supervisors: Addy McAdvisor
-Abstract: MyText
+Abstract:
+

MyText

Notes:
-

+

Let us know if you have any questions. And again, congratulations on finishing (or almost finishing) your degree!