-
Khurshid Faizullaev replied to the topic Using wp_mail and emails in the forum How-to & Troubleshooting 5 years, 9 months ago
thank you. works perfectly.
I just had to put all three together
add_filter(‘bp_email_use_wp_mail’, ‘__return_true’);
add_filter( ‘wp_mail_content_type’, function( $content_type ) {
$content_type = ‘text/html’;
return $content_type;
} );$must_use_wpmail = apply_filters( ‘bp_email_use_wp_mail’, $wp_html_emails || !…[Read more]
-
Khurshid Faizullaev replied to the topic BuddyPress Email Notification Ignoring SMTP Server Settings? in the forum How-to & Troubleshooting 5 years, 9 months ago
Hi everyone. I am doing a site called https://loveplove.com
After having read all forums, what worked for me was using WP Mail SMTP plugin was putting the following code. Please note I am just putting together various codes together from authors in those forums so you find it easily. In your bp-core-functions php file add the following:…[Read more]
@loveplove
Active 5 years, 9 months ago