ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
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),
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\sendMail
sendMail(array $a_rcp, $a_parse_recipients=true)
Definition:
class.ilMailNotification.php:344
ilMailNotification
Base class for course/group mail notifications.
Definition:
class.ilMailNotification.php:16
ilMailNotification\initMail
initMail()
Definition:
class.ilMailNotification.php:374
ilWorkflowEngineMailNotification\getBodyText
getBodyText()
Definition:
class.ilWorkflowEngineMailNotification.php:40
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:382
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 Wed Apr 2 2025 20:01:24 for ILIAS by
1.8.13 (using
Doxyfile
)