G’day Hugo,
That’s interesting! I have not seen this bug. It should only happen if there is something stripping the To: address in the call to wp_mail(), which would obviously stop those emails getting where they’re going.
So: are the emails getting through, with their To: fields intact?
Do you have any other plugins activated that do anything with emails?
cheers,
Ross
Thread Starter
Hugo
(@etic)
Hi Ross,
Yes the emails are going through. I will test it on a fresh installed website to see what could happen.
I just realized that some email does show the recipients. Depending from what they are sent (WordPress or plugins).
I will test further and come back with more details…
There must be something with this wordpress install since another emails logging’s plugin wasn’t working at all.
Thanks!
Can you check your error logs to see if something is being logged? You can find your website error log through your hosting control panel, usually under a button called Logs. If you’re not sure where to find it, you can tell WordPress to write errors to the file wp-content/debug.log by editing your wp-config.php file. Find the line that says:
define('WP_DEBUG', false);
And replace it with this:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
NB: you should change it back when you’re finished, because debug mode slows your website down a bit!
cheers,
Ross