php attach doc to email

Joined
12 Feb 2006
Posts
17,643
Location
Surrey
i am creating an application form on my website and it's working almost perfectly, just the last bit giving me problems which is attaching the cv to the email.

i have managed to upload the file, do checks etc all fine, it's the next part which is to attach it to the email which is about to be sent to me with the information.

i have googled but all the results were either difficult to understand or would not work with the method i'm using the send the email.

basically i have the following to send the email, can someone see how i'd easily attach the file?

PHP:
$my_email = "[email protected]";
$body = "name: john, email: [email protected], number: 0232323323";

mail($my_email, "Application form", $body, "From: $my_email\r\nReply-To: $cEmail\r\nContent-Type: text/html; charset=ISO-8859-1\r\nMIME-Version: 1.0");

thanks
 
Back
Top Bottom