LLMS_Email::set_subject( string $subject = '' )
set the subject for the email
Parameters Parameters
- $subject
-
(string) (Optional) Text string to use for the email subject.
Default value: ''
Return Return
($this)
Source Source
File: includes/emails/class.llms.email.php
public function set_subject( $subject = '' ) { $this->subject = html_entity_decode( $subject, ENT_QUOTES ); return $this; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |