Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

  • dvpl
    Participant

    @dvpl

    Thanks, @r-a-y
    Still looking for a solution …


    dvpl
    Participant

    @dvpl

    Thanks,

    I have made the change now it displayed an empty array.


    dvpl
    Participant

    @dvpl

    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
    Participant

    @dvpl

    Update # sending email from localhost using SendGrid Plugin. content type text/html selected.


    dvpl
    Participant

    @dvpl

    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.

Viewing 5 replies - 1 through 5 (of 5 total)
Skip to toolbar