@imath – this didn’t solve my problem. It remains the same as I had mentioned in https://buddypress.org/support/topic/buddypress-2-5-0-medici/ (no trigger situations seen).
Same here. With 2.5.1, even when switching to English language, still “situations” are not visible when add/editing emails.
Did you try using the repair tool?
wp-admin > Tools > BuddyPress > Reinstall emails (delete and restore from defaults).
Did you try using the repair tool?
This kind of magic… works! Thank you! 😉
@shanebp – yes, the repair tool/reinstall emails worked. Thanks.
Hi,
I want to send html email, but it always sending Plain text email content.
Using Thunderbird email client.
Template showing in Mails->customize, setting not reflecting in email.
Wordpress : Version 4.4.1
Buddypress : Version 2.5.1
Please help what is correct steps to get html emails working.
Update # sending email from localhost using SendGrid Plugin. content type text/html selected.
Additional Information.
I am using sendgrid plugin to send emails, buddypress sending the plain text html. I need HTML email. I also tried to add the following code in function.php but BP_Email showing me null value.
add_filter( 'bp_email_use_wp_mail', '__return_false' );
add_filter( 'bp_send_email_delivery_class', function( $delivery_class ) {
return 'Implementwpemailbp';
} );
class Implementwpemailbp implements BP_Email_Delivery
{
public function bp_email(BP_Email $email){
//add_filter('wp_mail_content_type', 'set_html_content_type');
//wp_mail($to, $subject, $message, $headers = '', $attachments = array())
//remove_filter('wp_mail_content_type', 'set_html_content_type');
var_dump(get_object_vars(BP_Email));
}
}
Please help what I need to update in above code.
@dvpl,
please open your own topic if you have an issue. This is an annoucment topic and not intended for support questions.
thank you.