Passed
Pull Request — master (#16)
by Anton
03:45
created

Mail::sendRegistrationMessage()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * @package Cadmium\System\Modules\Auth
5
 * @author Anton Romanov
6
 * @copyright Copyright (c) 2015-2017, Anton Romanov
7
 * @link http://cadmium-cms.com
8
 */
9
10
namespace Modules\Auth\Utils {
11
12
	use Modules\Auth, Modules\Entitizer, Modules\Settings, Utils\View, Date, Language, Mailer;
13
14
	abstract class Mail {
15
16
		/**
17
		 * Send a message
18
		 */
19
20
		private static function send(Entitizer\Entity\User $user, string $view, string $subject, string $link) : bool {
21
22
			$message = View::get((Auth::isAdmin() ? 'Blocks/Auth/Mail/' : 'Blocks/Profile/Auth/Mail/') . $view);
23
24
			$message->name = $user->name; $message->link = $link; $message->copyright = Date::getYear();
0 ignored issues
show
Bug introduced by
The property name does not seem to exist in Modules\Entitizer\Entity\User.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
25
26
			$to = $user->email; $sender = Settings::get('site_title'); $reply_to = Settings::get('system_email');
0 ignored issues
show
Bug introduced by
The property email does not seem to exist in Modules\Entitizer\Entity\User.

An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.

If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.

Loading history...
27
28
			$from = ((false !== ($host = parse_url(Settings::get('system_url'), PHP_URL_HOST))) ? ('noreply@' . $host) : '');
29
30
			# ------------------------
31
32
			return Mailer::send($to, $sender, $from, $reply_to, $subject, $message->getContents(), true);
33
		}
34
35
		/**
36
		 * Send the password reset message containing a secret code to a given user
37
		 */
38
39
		public static function sendPasswordMessage(Entitizer\Entity\User $user, string $code) : bool {
40
41
			$link = (Settings::get('system_url') . (Auth::isAdmin() ? '/admin' : '/profile') . '/recover?code=' . $code);
42
43
			return self::send($user, 'Reset', Language::get('MAIL_SUBJECT_RESET'), $link);
44
		}
45
46
		/**
47
		 * Send the registration message to a given user
48
		 */
49
50
		public static function sendRegistrationMessage(Entitizer\Entity\User $user) : bool {
51
52
			$link = (Settings::get('system_url') . (Auth::isAdmin() ? '/admin' : '/profile'));
53
54
			return self::send($user, 'Register', Language::get('MAIL_SUBJECT_REGISTER'), $link);
55
		}
56
	}
57
}
58