up vote 0 down vote favorite
share [g+] share [fb]

I am sending the echo to mail function via PHP from variable that includes HTML code. The strange thing is, that this

<����}im�

shows up AFTER the string.. but I do not manipulate with it anymore. The charset of mail function (the attachment) is same as charset of HTML code.

link|improve this question

I think we need more details. Can you find which byte sequences generate the invalid characters? (view with a hex editor?) – Artelius Nov 18 '08 at 21:52
I believe you may find good informations in this stackoverflow.com/questions/275411 question – VonC Nov 18 '08 at 22:13
feedback

4 Answers

up vote 2 down vote accepted

Encoding problem, maybe it tries to display binary code?

You should use htmlentities if ou want to display HTML

// Outputs: A 'quote' is

<b>bold</b> echo

htmlentities($str);

link|improve this answer
I am not sure I understand this but I'll check on google :) thx – Skuta Nov 18 '08 at 22:08
feedback

Those characters are probably "junk" data in your string. Depending on where the string is coming from these characters could be: extra TCP data in the socket after the HTML page, or extra data in the file after the HTML page, or someone else actually put these characters in their HTML page (perhaps their file was accidentally corrupted, or for some other reason).

link|improve this answer
feedback

You could consider using the htmlMimeMail class for handling the email. So you can avoid the nasty email internals.

link|improve this answer
How the hell do I download it??? I can't download PHP files from web! phpguru.org/downloads/html.mime.mail/htmlMimeMail-2.5.2 – Skuta Nov 19 '08 at 19:07
You can copy-paste the contents of the phps files. – Bob Fanger Nov 29 '08 at 8:13
feedback

This is the problem I have.. I use the code from Internet source, the $body is generated invoice and this send the email.. Those characters are at the end of HTML source file but I don't understand why the hell they are there :(

$to = 'email@email.com';
$subject = 'Invoice';
$random_hash = md5(date('r', time()));
$headers = "From: mymail@mymail.com\r\nReply-To: webmaster@example.com";
$headers .= "\r\nContent-Type: multipart/mixed; boundary=\"PHP-mixed-".$random_hash."\"";
$body=rtrim(chunk_split(base64_encode($body))); 
//define the body of the message.
ob_start(); //Turn on output buffering
?>
--PHP-mixed-<?php echo $random_hash; ?> 
Content-Type: multipart/alternative; boundary="PHP-alt-<?php echo $random_hash; ?>"

--PHP-alt-<?php echo $random_hash; ?> 
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit

Hello World!!!
This is simple text email message.

--PHP-alt-<?php echo $random_hash; ?> 
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: 7bit

Text Emailu.

--PHP-alt-<?php echo $random_hash; ?>--

--PHP-mixed-<?php echo $random_hash; ?> 
Content-Type: text/html; charset="UTF-8"; name="faktura.html" 
Content-Transfer-Encoding: base64 
Content-Disposition: attachment 

<?php echo htmlentities($body); ?>
--PHP-mixed-<?php echo $random_hash; ?>--

<?php
//copy current buffer contents into $message variable and delete current output buffer
$message = ob_get_clean();
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.