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
!80
An error occurred while fetching the assigned milestone of the selected merge_request.
Resolve "[Orchestrator] - Create a librabry in core orchestrator"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Alexa Oana eliza
requested to merge
73-orchestrator-create-a-librabry-in-core-orchestrator
into
dev
1 month ago
Overview
0
Commits
22
Pipelines
17
Changes
1
Related to
#73
0
0
Viewing commit
9a0adfbb
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
9a0adfbb
Add mail utils
· 9a0adfbb
Oana-Eliza Alexa
authored
1 month ago
library/MailUtils.php
0 → 100644
+
22
−
0
Options
View file @ 9a0adfbb
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