sending an email with attachment

Hi,
Please help me in sending an e-mail with attachment through unix

mailx command is not present in our unix box.

uuencode file file | mail -s "any subject" yourmail@foobar.com

#use only mail -s:
# -s is for subject line.

uuencode "/path/filename" "filename" | mail -s "filename" emailid@example.com

Its showing me here as uuencode command is not found
is there any other way i can use " sendmail command

please help me out.

what operating system are you on?