summaryrefslogtreecommitdiff
path: root/includes/helper/email_helper.php
blob: 802debaae5b7a139b9b2fcd26cf41280644b6ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

use Engelsystem\Mail\EngelsystemMailer;
use Engelsystem\Models\User\User;

/**
 * @param User   $recipientUser
 * @param string $title
 * @param string $message
 * @param bool   $notIfItsMe
 * @return bool
 */
function engelsystem_email_to_user($recipientUser, $title, $message, $notIfItsMe = false)
{
    if ($notIfItsMe && auth()->user()->id == $recipientUser->id) {
        #return true;
    }

    /** @var \Engelsystem\Helpers\Translator $translator */
    $translator = app()->get('translator');
    $locale = $translator->getLocale();
    
    try {
        /** @var EngelsystemMailer $mailer */
        $mailer = app('mailer');
    
        $translator->setLocale($recipientUser->settings->language);
        $status = $mailer->sendView(
            $recipientUser->contact->email ? $recipientUser->contact->email : $recipientUser->email,
            $title,
            'emails/mail',
            ['username' => $recipientUser->name, 'message' => $message]
        );
    } catch(Exception $e) {
        $status = 0;
    }

    $translator->setLocale($locale);

    if (!$status) {
        error(sprintf(__('User %s could not be notified by email due to an error.'), User_Nick_render($recipientUser)));
        engelsystem_log(sprintf('User %s could not be notified by email due to an error.', $recipientUser->name));
    }

    return (bool)$status;
}