www.phpclasses.org is your best bet. there are plenty. personally i use
this one..http://phpclasses.com/browse.html/package/32.html
check out his site for examples.
hth
jd
"Marie Osypian"
<[EMAIL PROTECTED] To: <[EMAIL PROTECTED]>
llege.com> cc:
Subject: [PHP-DB] Email an
attached file
05/28/2003 02:08 PM
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
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php