confirmation emails are not sent for new users
-
help please I have already restored the emails and it still does not work how I can fix it.
-
I’m having the same problem!
You found some possible solution??
Hi, I just noticed this as well. Was there an update on Buddypress? I don’t remember updating the plugin. Or was it something on google’s end?
I get other WP emails just fine. I thought it might be due to noreply@site.com wasn’t a valid email just not working.
I use another registration form and that sends email, but its annoying as the buddypress assigns correct role.
If you’ve already tried the solutions in this thread:
Then, here are a couple of other possible solutions:
1) Remove the “Reply-To” email address from BuddyPress emails.
By default, BuddyPress adds a “Reply-To” email header to each BuddyPress email containing the admin user’s email address.
I’m guessing email senders might have problems with this because the “From” email address and the “Reply-To” email address could use different domains. Email senders might think this is spammy and would reject the email. Just a guess. You’d have to look in your email logs to confirm.
Anyway, here’s a code snippet you can try in your theme’s
functions.php
or in wp-content/bp-custom.php:add_filter( 'bp_email_set_reply_to', function( $retval, $email_address ) { // Wipe out Reply-to email header if it matches the admin email address. if ( bp_get_option( 'admin_email' ) === $email_address ) { $retval = new BP_Email_Recipient( '' ); } return $retval; }, 10, 2 );
2) Try setting a different “From” email address
If you are having problems sending any email on your WordPress install, you might have to set the “From” email address to one that contains your website domain.
There are a few plugins that can do this. Here are a couple:
3) Try using a WordPress email SMTP plugin
If all the above fail, try a SMTP email plugin:
https://wordpress.org/plugins/tags/smtp/—-
Please let me know if either of the solutions work.
Also, it’s important to check if it is a delivery problem. Try to confirm if other e-mails are being sent via SMTP or PHP.
I just had a client with a similar problem where the real culprit was SMTP/PHP related.
một trong những giao diện, thiết kế các loại bệnh với css hay php hoặc java thường thấy. Tôi cũng đang dùng đây nếu cảm thấy oke hãy xem ngay tại đây nhé http://ykhoatoanthu.com chuyên về chủ đề sức khỏe bệnh tật cho bạn.
This happens to BBPress too, I now run Buddy and BBpress, this problem occurs that no confirmation email sent to the new registered users. I figured a temporary workaround (the bad one) that after a user registered they need to click the Forget Password to get the confirmation email.
So what’s the fix actually this is really bad situation, I have number of new registered users that can’t confirm their emails because of this problem.
I am having the issue. I tried the steps provided by Keymaster without any success. I might have done it wrong though. Keymaster, could you provide steps adding the snippet that you provided. Anyone else has a solution that could work?
- You must be logged in to reply to this topic.