12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <% define_content :link do %>
- <%= conversation_url(asset.conversation_id) %>
- <% end %>
- <% define_content :user_name do %>
- <%= asset.author_short_name_with_shared_contexts(user) rescue t(:unknown_user, "Unknown User") %>
- <% end %>
- <% define_content :subject do %>
- <%= t :subject, "%{user_name}, you just sent a message in Canvas.", :user_name => content(:user_name) %>
- <% end %>
- <% define_content :footer_link do %>
- <a href="<%= content :link %>">
- <%= t :view_message, "View this message in Conversations" %>
- </a>
- <% end %>
- <% if asset.conversation.subject.present? %>
- <h4>
- <%= format_message(asset.conversation.subject).first %>
- </h4>
- <% end %>
- <p>
- <%= format_message(asset.body).first %>
- </p>
- <% if avatar_enabled? %>
- <table border="0" style="border-collapse: collapse">
- <tr height="30px">
- <td></td>
- </tr>
- <tr >
- <td align="left" width="50px" ><img style="border-radius: 50px;" height= 50px width = 50px src= <%=author_avatar_url%> alt=<%=author_short_name%>> </td>
- <td width="10"></td>
- <td>
- <table border="0" style="font-size: 14px; color: #444444; background-color: #ffffff; font-family: 'Open Sans', 'Lucida Grande', 'Segoe UI', Arial, Verdana, 'Lucida Sans Unicode', Tahoma, 'Sans Serif';" valign="top" align="left">
- <tr>
- <td valign="bottom" align="left">
- <b><%= author_short_name%></b>
- </td>
- </tr>
- <tr>
- <td valign="top" align="left">
- <a href="<%= content :link %>">
- <%= author_email_address%>
- </a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <% else %>
- <p height="30px"></p>
- <p>
- <b><%= author_short_name%></b>
- <br/>
- <a href="<%= content :link %>">
- <%= author_email_address%>
- </a>
- </p>
- <% end %>
- <% if asset.has_media_objects? %>
- <p><%= t :audio_comment, "This message includes media comments. To listen or reply, click the link below:" %></p>
- <% elsif IncomingMailProcessor::MailboxAccount.reply_to_enabled %>
- <p><%= t :reply_to_conversation_message, "You can reply to this message in Canvas by replying directly to this email." %></p>
- <% end %>
- <% unless asset.attachments.empty? %>
- <div style="margin-top: 20px; padding: 10px; background-color: #f3f3f3;">
- <p style="margin: 0px;"><%= t :attached_files, "Attached Files:" %></p>
- <ul style="padding-left: 20px;">
- <% asset.attachments.each do |attachment| %>
- <li><%= attachment.display_name %> - <%= attachment.readable_size %> <a href="<%= file_download_url(attachment, verifier: attachment.uuid) %>">[<%= t :download, "download" %>]</a></li>
- <% end %>
- </ul>
- </div>
- <% end %>
|