file upload

Hi!!! i'm trying to send file via mails but i can get it work this is my form

<form action="<%= url_for :action =>'send_firstorder', :controller =>'pages' %>" method="post" >

<b>&nbsp;add your file:</b></td><td style="border:none;"><input size="30" name="forder[file]" type="file"><br>

<input type=image value="send" style="border:1px solid #b7b7b7;"><br>

</form>

when i'm receiving the mail i can see only the path of file for exple C:\image.gif

but i want to send the file itself

Hi!!! i'm trying to send file via mails but i can get it work this is my form

The form encoding needs to be set to multipart (see the form helpers guide on guides.rubyonrails.org)

Fred