@dvpl
7 years, 3 months ago
Thanks, @r-a-y Still looking for a solution …
8 years, 8 months ago
Thanks,
I have made the change now it displayed an empty array.
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.
Update # sending email from localhost using SendGrid Plugin. content type text/html selected.
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.