BP_Email::set_content_html( string $content )

Set the email content (HTML).

Description

Parameters

$content

(Required) HTML email content.

Return

(BP_Email)

Source

File: bp-core/classes/class-bp-email.php

616
617
618
619
620
621
622
623
624
625
626
627
628
629
public function set_content_html( $content ) {
 
    /**
     * Filters the new value of the email's "content" property (HTML).
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $content HTML email content.
     * @param BP_Email $this Current instance of the email type class.
     */
    $this->content_html = apply_filters( 'bp_email_set_content_html', $content, $this );
 
    return $this;
}

Changelog

Changelog
Version Description
BuddyPress 2.5.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.