% layout 'mainlayout';

Write Message

% if (my $msg = stash('warning')) {

<%= $msg %>

% } %= form_for '' => (method => 'post') => (enctype => 'multipart/form-data') => (id => 'write-form') => begin %= label_for mail => ucfirst l 'send_to' %= email_field 'to', id => 'mail', multiple => '', required => ''
%= label_for subject => ucfirst l 'subject' %= text_field 'subject', 'required' => ''
%= label_for cc => 'CC' %= email_field 'cc', 'multiple' => ''
%= label_for bcc => 'BCC' %= email_field 'bcc', 'multiple' => ''
%= label_for back_to => ucfirst l 'answer_to' %= email_field 'back_to'
%= label_for txt => ucfirst l 'content' %= text_area body => (cols => 80) => (rows => 24) => (id => 'txt')
%= file_field 'attach'
%= submit_button l 'send' %= csrf_field % end