LLMS_Email::set_content_type( string $content_type = 'text/html' )

set the content_type for the email


Parameters Parameters

$content_type

(string) (Optional) content type (for the header)

Default value: 'text/html'


Top ↑

Return Return

($this)


Top ↑

Source Source

File: includes/emails/class.llms.email.php

	public function set_content_type( $content_type = 'text/html' ) {
		$this->content_type = $content_type;
		return $this;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.