| Conditions | 3 |
| Paths | 3 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public static function admin_mail_send_test_email ($Request) { |
||
| 47 | $email = $Request->data('email'); |
||
|
|
|||
| 48 | if (!$email) { |
||
| 49 | throw new ExitException(400); |
||
| 50 | } |
||
| 51 | if (!System_mail::instance()->send_to($email, 'Email testing on '.Config::instance()->core['site_name'], 'Test email')) { |
||
| 52 | throw new ExitException(500); |
||
| 53 | } |
||
| 84 |