I had to get this working last week 🙂
$message.="Available to work from $AvailableFrom\n";
$mail = new mime_mail();
$mail->from = "websystem@home.net";
$mail->headers = "Errors-To: websystem@home.net";
$mail->to = "$recipient";
$mail->subject = "Registration from website";
$attachment = fread(fopen($file, "r"), filesize($file));
$mail->add_attachment("$attachment", "cv.doc", "image/jpeg");
$mail->body = $message;
$mail->send();
I used the mail/Mime class from this site 🙂
Darren
http://www.php4hosting.com