- resend
- <%= link_to "view raw", {:action => "raw", :id => delivery}, :target => "_blank" %>
<% if delivery.raw.multipart?%>
- view part:
<%=
delivery.raw.parts.map do |p|
link_to h(p.content_type), {:action => 'part', :id => delivery, :part => p.content_type}, :target => "_blank"
end.join ' | '
%>
<% end %>
<%=delivery_body delivery%>
<%=form_remote_tag(:url => {:action => 'read'}, :html =>{:class => 'reader'})%>
<%=hidden_field_tag 'id', delivery.id, :id => nil%>
<%=end_form_tag%>
|