hi i was wondering how i would send and email attachment in this mail script, the attachement is a word file, if someoen could give me a hand it would be much appreciated
<?php
$mail = trim($e-key);
$to = "\"$NPO\" <$mail>";
$sub = "test";
$message = "Hello $Contact_Person,
";
$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");
?>