summaryrefslogtreecommitdiff
path: root/includes/helper/email_helper.php
blob: 3012d5ce3c3022152eacc00306bc810dfbb2dca0 (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
47
48
49
50
51
52
53
54
55
<?php

use Engelsystem\Helpers\Translation\Translator;
use Engelsystem\Mail\EngelsystemMailer;
use Engelsystem\Models\User\User;
use Psr\Log\LogLevel;

/**
 * @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 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;
        engelsystem_log(sprintf(
            'An exception occurred while sending a mail to %s in %s:%u: %s',
            $recipientUser->name,
            $e->getFile(),
            $e->getLine(),
            $e->getMessage()
        ), LogLevel::CRITICAL);
    }

    $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;
}