engelsystem/includes/helper/email_helper.php

57 lines
1.6 KiB
PHP
Raw Normal View History

2013-12-26 13:34:48 +01:00
<?php
use Engelsystem\Helpers\Translation\Translator;
use Engelsystem\Mail\EngelsystemMailer;
2018-10-09 21:47:31 +02:00
use Engelsystem\Models\User\User;
2019-04-29 23:17:58 +02:00
use Psr\Log\LogLevel;
2017-01-03 03:22:48 +01:00
/**
2018-10-17 01:30:10 +02:00
* @param User $recipientUser
* @param string $title
* @param string $message
* @param bool $notIfItsMe
2017-01-03 03:22:48 +01:00
* @return bool
*/
2018-10-09 21:47:31 +02:00
function engelsystem_email_to_user($recipientUser, $title, $message, $notIfItsMe = false)
2017-01-02 03:57:23 +01:00
{
2018-10-31 12:48:22 +01:00
if ($notIfItsMe && auth()->user()->id == $recipientUser->id) {
2019-04-29 23:17:58 +02:00
return true;
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
/** @var Translator $translator */
$translator = app()->get('translator');
$locale = $translator->getLocale();
2019-04-29 23:17:58 +02:00
$status = true;
try {
/** @var EngelsystemMailer $mailer */
$mailer = app('mailer');
2019-04-29 23:17:58 +02:00
$translator->setLocale($recipientUser->settings->language);
$mailer->sendView(
$recipientUser->contact->email ?: $recipientUser->email,
$title,
'emails/mail',
['username' => $recipientUser->displayName, 'message' => $message]
);
2019-04-29 23:17:58 +02:00
} catch (Exception $e) {
$status = false;
2019-04-29 23:17:58 +02:00
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);
}
2017-01-02 15:43:36 +01:00
$translator->setLocale($locale);
2017-01-03 03:22:48 +01:00
if (!$status) {
error(sprintf(__('User %s could not be notified by email due to an error.'), $recipientUser->displayName));
engelsystem_log(sprintf('User %s could not be notified by email due to an error.', $recipientUser->name));
2017-01-02 03:57:23 +01:00
}
2017-01-03 03:22:48 +01:00
return $status;
2013-12-26 13:34:48 +01:00
}