email register not sent (Bugs)

by Sahar @, Tuesday, August 04, 2009, 10:31 (5351 days ago)

There is a problem with version 2.11 with email's not pass on (usually i'm using linux, but this time it was on windows server)

After some digging, there is a quick fix to that:

Line 133 in register.inc.php:

Change:

$new_user_mailto = my_mb_encode_mimeheader($new_user_name, CHARSET, "Q") . " <".$new_user_email.">";


TO:

$new_user_mailto = $new_user_email;

Hope it will help someone :)

Cheers,
Keep the good work with this great little forum!!!!

email register not sent

by Charley @, Monday, December 14, 2009, 08:45 (5219 days ago) @ Sahar

The same problem also affects the forgotten password email. On a Windows server you'll want to change line 183 of login.inc.php from

$pwf_mailto = my_mb_encode_mimeheader($field["user_name"], CHARSET, "Q")." <".$field["user_email"].">";

to:

$pwf_mailto = $field["user_email"];

Hope this helps somebody!

email register not sent

by TonyK, Tuesday, January 26, 2010, 23:10 (5176 days ago) @ Sahar

Those two tips are really helpful - I was going out of my mind wondering why nobody could register! :ok:

RSS Feed of thread