Sending an email with PHP is pretty straight forwards. It's very useful for emailing reports generated from cron jobs etc.
Sometimes though you need your application to email an attachment.
After a load of messing around I have hacked together this email attachment PHP function.
PLAIN TEXT
PHP:
function email_attachment($to_email, $email, $subject,$our_email_name, $our_email, $file_location, $default_filetype='application/zip'){
$email = '<font face="arial">' [...]