The Little Guy Posted January 30, 2010 Share Posted January 30, 2010 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.