% html_title(l(:dmsf)) %>
<%= label_tag("", l(:label_email_from) + ":") %> <%= h(User.current.mail) %>
<%= label_tag("email[to]", l(:label_email_to) + ":") %> <%= text_field_tag("email[to]", @email_params["to"], :style => "width: 90%;") %>
<%= label_tag("email[cc]", l(:label_email_cc) + ":") %> <%= text_field_tag("email[cc]", @email_params["cc"], :style => "width: 90%;") %>
<%= label_tag("email[subject]", l(:label_email_subject) + ":") %> <%= text_field_tag("email[subject]", @email_params["subject"], :style => "width: 90%;") %>
<%= label_tag("", l(:label_email_documents) + ":") %> Documents.zip <%= hidden_field_tag("email[zipped_content]", @email_params["zipped_content"]) %>
<%= label_tag("email[body]", l(:label_email_body) + ":") %> <%= text_area_tag("email[body]", @email_params["body"], :rows=> "20", :style => "width: 90%;") %>
<%= submit_tag(l(:label_email_send)) %>