Jump to content

Strange symbols in email


The Little Guy

Recommended Posts

I am reading email that is sent to my server, when I get a message from a Gmail account, gmail adds things like: =A0,=, 3D and other symbols for some reason.

 

This message was send from Gmail

 

--

Ryan Naddy

=

Visit one of my sites at:

http://vi= plyrics.com, http://tzfiles.com, or = http://phpsnips.com

 

Maybe it is my email server, or maybe it is Gmail...

 

Here is the code I use to get the full email:

$fd = fopen("php://stdin", "r");
$msg = "";
while (!feof($fd)){
  $msg .= fread($fd, 8192);
}
echo $msg;

 

latter on, I save $msg to a db table. Why are those symbols there? They aren't there in the original email...

Link to comment
https://forums.phpfreaks.com/topic/190395-strange-symbols-in-email/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.