<? /* * 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"; $extra = "From: $youremail\r\n"; $recipient = "$clientemail"; $subject = "From $yourcompany - invoice notification."; mail ($recipient, $subject, $message, $extra); ?>