Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory-orchestrator
Merge requests
!75
An error occurred while fetching the assigned milestone of the selected merge_request.
Draft: Resolve "Redesign Mail"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Alexa Oana eliza
requested to merge
79-redesign-mail
into
dev
2 weeks ago
Overview
0
Commits
23
Pipelines
12
Changes
1
Related to
#79
0
0
Viewing commit
296153c7
Prev
Next
Show latest version
1 file
+
22
−
0
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
296153c7
Add mail utils
· 296153c7
Oana-Eliza Alexa
authored
2 weeks ago
library/MailUtils.php
0 → 100644
+
22
−
0
Options
View file @ 296153c7
Edit in single-file editor
Open in Web IDE
<?php
class
MailUtils
{
private
function
__construct
()
{
}
public
static
function
sendMail
(
$setFrom
,
$setBCC
,
$recipients
,
$body
,
$signature
,
$subject
,
$receipt
,
$attachments
)
{
$mail_controller
=
new
\
FusionDirectory\Mail\MailLib
(
$setFrom
,
$setBCC
,
$recipients
,
$body
,
$signature
,
$subject
,
$receipt
,
$attachments
);
return
$mail_controller
->
sendMail
();
}
}
\ No newline at end of file
Menu
Explore
Projects
Groups
Topics
Snippets