i'm trying to send an attachment in ms word file on an email, i can't seem to get it to work, here is my script without the mail attachement, mabey u can help. The script works without the attachment.
<?php
$mail = trim($e-key);
$to = "\"$NPO\" <$mail>";
$sub = "test";
$message = '
original msg not required
';
$message .= '
original msg not required';
$message .= '
original msg not required';
$message .= '
original msg not required';
$message .= '
original msg not required
';
mail($to, $sub, $message, "From:
Someguy@hotmail.com");
?>