ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
class.ilWorkflowEngineMailNotification.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
5
require_once
'./Services/Mail/classes/class.ilMailNotification.php'
;
6
13
class
ilWorkflowEngineMailNotification
extends
ilMailNotification
14
{
16
protected
$subject_text
;
17
19
protected
$body_text
;
20
24
public
function
getSubjectText
()
25
{
26
return
$this->subject_text
;
27
}
28
32
public
function
setSubjectText
(
$subject_text
)
33
{
34
$this->subject_text =
$subject_text
;
35
}
36
40
public
function
getBodyText
()
41
{
42
return
$this->body_text
;
43
}
44
48
public
function
setBodyText
(
$body_text
)
49
{
50
$this->body_text =
$body_text
;
51
}
52
53
public
function
send
($rcp)
54
{
55
$this->
initLanguage
($rcp);
56
$this->
initMail
();
57
58
$this->
setSubject
($this->subject_text);
59
$this->
setBody
($this->body_text);
60
$this->
getMail
()->appendInstallationSignature(
true
);
61
62
$this->
sendMail
(
array
($rcp),
array
(
'system'
),
false
);
63
}
64
}
ilMailNotification\setBody
setBody($a_body)
Definition:
class.ilMailNotification.php:120
ilMailNotification\initLanguage
initLanguage($a_usr_id)
Init language.
Definition:
class.ilMailNotification.php:191
ilWorkflowEngineMailNotification\setSubjectText
setSubjectText($subject_text)
Definition:
class.ilWorkflowEngineMailNotification.php:32
ilWorkflowEngineMailNotification\getSubjectText
getSubjectText()
Definition:
class.ilWorkflowEngineMailNotification.php:24
ilMailNotification\setSubject
setSubject($a_subject)
Definition:
class.ilMailNotification.php:104
ilMailNotification
Base class for course/group mail notifications.
Definition:
class.ilMailNotification.php:16
ilMailNotification\initMail
initMail()
Definition:
class.ilMailNotification.php:376
ilWorkflowEngineMailNotification\getBodyText
getBodyText()
Definition:
class.ilWorkflowEngineMailNotification.php:40
array
Create styles array
The data for the language used.
Definition:
40duplicateStyle.php:19
ilMailNotification\sendMail
sendMail(array $a_rcp, $a_type, $a_parse_recipients=true)
Definition:
class.ilMailNotification.php:345
ilWorkflowEngineMailNotification\setBodyText
setBodyText($body_text)
Definition:
class.ilWorkflowEngineMailNotification.php:48
ilWorkflowEngineMailNotification
PhpIncludeInspection
Definition:
class.ilWorkflowEngineMailNotification.php:13
ilWorkflowEngineMailNotification\$subject_text
$subject_text
Definition:
class.ilWorkflowEngineMailNotification.php:16
ilMailNotification\getMail
getMail()
Definition:
class.ilMailNotification.php:384
ilWorkflowEngineMailNotification\$body_text
$body_text
Definition:
class.ilWorkflowEngineMailNotification.php:19
ilWorkflowEngineMailNotification\send
send($rcp)
Definition:
class.ilWorkflowEngineMailNotification.php:53
Services
WorkflowEngine
classes
activities
class.ilWorkflowEngineMailNotification.php
Generated on Sat Jan 18 2025 19:01:41 for ILIAS by
1.8.13 (using
Doxyfile
)