<? /* * Exemplar Web hosting * http://www.exemplar.biz * * Title: PHP Online Invoice System * Version: 2.0 * Author: Exemplar * Date: 01-01-2006 * */ include "inc/config.php"; $message = "This message is to confirm receipt that invoice #$id has been paid in full. \n\n\n Thank you, \n $yourcompany"; $extra = "From: $youremail\r\n"; $recipient = "$clientemail"; $subject = "Confirmation of invoice paid."; mail ($recipient, $subject, $message, $extra); ?>