BP_Email::set_content_plaintext( string $content )

Set the email content (plain text).

Description

Parameters

$content

(Required) Plain text email content.

Return

(BP_Email)

Source

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

639
640
641
642
643
644
645
646
647
648
649
650
651
652
public function set_content_plaintext( $content ) {
 
    /**
     * Filters the new value of the email's "content" property (plain text).
     *
     * @since BuddyPress 2.5.0
     *
     * @param string $content Plain text email content.
     * @param BP_Email $this Current instance of the email type class.
     */
    $this->content_plaintext = apply_filters( 'bp_email_set_content_plaintext', $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.