BP_Email::get_content_type( string $transform = 'raw' )

Get the email content type (HTML or plain text) that the email will be sent in.

Description

Unlike most other methods in this class, this one is not chainable.

Parameters

$transform

(string) (Optional) How to transform the return value. Accepts 'raw' (default) or 'replace-tokens'.

Default value: 'raw'

Return

(string) Email content type ("html" or "plaintext").

Source

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

	public function get_content_type( $transform = 'raw' ) {
		return $this->get( 'content_type', $transform );
	}

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.