Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | public function sendActivationCode(User $user, $languageCode) |
||
48 | { |
||
49 | Lang::setLocale($languageCode); |
||
50 | |||
51 | $sendMail = new SendMail( |
||
52 | $user->email, |
||
53 | Lang::get('activate.subject'), |
||
54 | 'emails.activation', |
||
55 | [ |
||
56 | 'name' => $user->name, |
||
57 | 'activation_code' => $user->activation_code |
||
58 | ] |
||
59 | ); |
||
60 | |||
61 | Queue::push(new SendMailJob($sendMail)); |
||
62 | } |
||
87 |