MIME-Version: 1.0 From: at top of all emails! How to fix?

Why on all emails sent from my website does it contain this nonsense at the top of every email?

 

MIME-Version: 1.0 From: =?UTF-8?B?Q2x1Ym5ldCBVSw==?=

 

It just makes the emails look untidy and unprofessional - Can anyone advise if it is possible to get rid of this so it doesn't display on emails?

 

Many thanks,

Quote · 4 Jan 2011
I'm getting the same thing from my site. Not sure why but google searches seem to indicate an improperly formatted MIME header... but I would think there'd me more responses if it was a problems in dolphin... Anyone have any suggestions? My mailserver is postfix... Thanks
Quote · 11 Jan 2011

There's a fix for it somewhere here on the site

Quote · 11 Jan 2011

I found this one but it dosen't do the trick:

 

http://www.boonex.com/unity/forums/?action=goto&topic_id=notification-MIME-Version

 

Just removes the "MIME-Version: 1.0" part and the rest of the stuff is still there...

 


 

Quote · 12 Jan 2011

you must remove the :    \ r

file -  inc / inc.utils.inc.php  -      "MIME-Version: 1.0\r\n"

which gives :   1.0\n

attached file edit - D 7.0.4  -

utils.inc.php · 36.4K · 713 downloads
Bosun / Moderator -- My Products : http://www.boonex.com/market/posts/danielmarseille
Quote · 12 Jan 2011

Ok Perfect, thanks for clarifying. So I found on 3 lines that I needed to remove that extra \r. The MIME line and a couple of the lines with UTF-8\r\n

 

Thanks, looks much better.

Quote · 12 Jan 2011

 

you must remove the :    \ r

file -  inc / inc.utils.inc.php  -      "MIME-Version: 1.0\r\n"

which gives :   1.0\n

attached file edit - D 7.0.4  -

Have applied this, thanks for your help.

 

Will wait for an email to come through and fingers crossed :)

 

Thanks again.

Quote · 13 Jan 2011

Since applying this, I am now getting blank emails through with just =?UTF-8?B??= in the subject field. I'm not to sure what these emails should be instead of this. I did receive one though without the MIME stuff at the top which is ace, thanks for that. I just hope other emails aren't broken now because of it, any ideas?

 

Thanks

Quote · 13 Jan 2011

did you delete -  r - in  three line

 

$sMailHeader = "MIME-Version: 1.0\r\n" . $sMailHeader;

change to

$sMailHeader = "MIME-Version: 1.0\n" . $sMailHeader;



$sMailHeader = "Content-type: text/html; charset=UTF-8\r\n" . $sMailHeader;

change to

$sMailHeader = "Content-type: text/plain; charset=UTF-8\n" . $sMailHeader;


$sMailHeader = "Content-type: text/html; charset=UTF-8\r\n" . $sMailHeader;

change to

$sMailHeader = "Content-type: text/html; charset=UTF-8\n" . $sMailHeader;

Bosun / Moderator -- My Products : http://www.boonex.com/market/posts/danielmarseille
Quote · 13 Jan 2011

Yes, there were three instances of the /r in the file which I deleted.

 

Thanks

Quote · 14 Jan 2011

Is this really the fix? Did it work? Seems unlikely to me....

http://towtalk.net ... Hosted by Zarconia.net!
Quote · 17 Jul 2011
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.