I am using something like this example code below to send e-mail and
wondered if anyone could tell me how I could include a file also in this
email if possible.

Thanks in advance.
Marie


EXAMPLE:

$myname = "Me Myself";
$myemail = "[EMAIL PROTECTED]";

$contactname = "Mister Contact";
$contactemail = "[EMAIL PROTECTED]";

$message = "hello from happy me";
$subject = "Included your file";

$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: ".$myname." <".$myemail.">\r\n";
$headers .= "To: ".$contactname." <".$contactemail.">\r\n";
$headers .= "Reply-To: ".$myname." <$myreplyemail>\r\n";
$headers .= "X-Priority: 1\r\n";
$headers .= "X-MSMail-Priority: High\r\n";
$headers .= "X-Mailer: Just My Server";
mail($contactemail, $subject, $message, $headers);



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to