| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public static function run() |
||
| 10 | { |
||
| 11 | DB::table('cms_email_templates')->insert([ |
||
| 12 | 'name' => 'Email Template Forgot Password Backend', |
||
| 13 | 'slug' => 'forgot_password_backend', |
||
| 14 | 'content' => '<p>Hi,</p><p>Someone requested forgot password, here is your new password : </p><p>[password]</p><p><br></p><p>--</p><p>Regards,</p><p>Admin</p>', |
||
| 15 | 'description' => '[password]', |
||
| 16 | 'from_name' => 'System', |
||
| 17 | 'from_email' => '[email protected]', |
||
| 18 | 'cc_email' => null, |
||
| 19 | ]); |
||
| 21 | } |