sending a file attachment using Net::SMTP

SalomeH@tend.net ("SalomeH@tend.net")
Mon, 8 Feb 1999 10:08:15 -0500


I am trying to send an email message that has some text and a file
attachment.  However, I can't figure out how to send the file as an
attachment and not as the body of the message. Can someone help?

..
..
..
..
$smtp->datasend("Subject: info from me\n");
$smtp->datasend("To: salomeh\@tend.net\n");
$smtp->datasend("From: salomeh\@tend.net\n");
$smtp->datasend("\n");
$smtp->datasend("simple test");
#WANT TO SEND AN FILE ATTACHMENT NOW
..
..
..
..

Thanks in adavance for your help.

-Salome Harrison