|
-
Aug 5th, 2003, 05:18 AM
#1
Thread Starter
Member
Email Question
Dear all,
I'm using the below mentioned code along with my emails....when i receive an email i see an attachment sign with it......and the mail isn't an attachment...
When i remove some of the part of it...then i don't see <HTML> emails.....
I want to send HTML emails....
Kindly let me know why is it so.....
Thanks
FmKing
####################################
$subject = "Subject";
$cl_mail_boundary = md5(uniqid(time()));
$mail_headers = "From:<[email protected]>\r\n";
$mail_headers .= "MIME-Version: 1.0\r\n";
$mail_headers .= "Content-type: multipart/mixed;boundary=\"$cl_mail_boundary\"";
$mail_headers .= "\r\n\r\n";
$mail_headers .= "This is a multi-part message in MIME format.";
$mail_headers .= "\r\n\r\n";
$message = "--$cl_mail_boundary\n";
$message .= "Content-type: text/html; charset=en\r\n";
$message .= "Content-transfer-encoding: 8bit\r\n\r\n";
$message .= "The message goes here";
####################################
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|