1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-25 18:01:14 +00:00
redmine/app/views/mailer/_issue.text.erb
Jean-Philippe Lang 0c78056a69 Send emails asynchronously (#26791).
Custom async_* delivery methods are removed in favor of ActiveJob (Async by default).

git-svn-id: http://svn.redmine.org/redmine/trunk@17588 e93f8b46-1217-0410-a6f0-8f06a7374b81
2018-10-10 17:13:09 +00:00

14 lines
429 B
Plaintext

<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
<%= issue_url %>
<%= render_email_issue_attributes(issue, user) %>
----------------------------------------
<%= issue.description %>
<% if issue.attachments.any? -%>
---<%= l(:label_attachment_plural).ljust(37, '-') %>
<% issue.attachments.each do |attachment| -%>
<%= attachment.filename %> (<%= number_to_human_size(attachment.filesize) %>)
<% end -%>
<% end -%>