LLMS_Email::set_subject( $subject = '' )

set the subject for the email


Description Description


Parameters Parameters

$content_type

(string) (Required) text string to use for the email subject.


Top ↑

Return Return

($this)


Top ↑

Source Source

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

	public function set_subject( $subject = '' ) {
		$this->subject = html_entity_decode( $subject, ENT_QUOTES );
		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.