| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template for displaying finish step. |
| 4 |
* |
| 5 |
* @author ThimPres |
| 6 |
* @package LearnPress/Admin/Views |
| 7 |
* @version 3.0.0 |
| 8 |
*/ |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) or exit; |
| 11 |
?> |
| 12 |
<h2><?php _e( 'Emails system', 'learnpress' ); ?></h2> |
| 13 |
|
| 14 |
<p><?php _e( 'Emails are sent to users or teachers for each particular action.', 'learnpress' ); ?></p> |
| 15 |
<p><?php _e( 'You can enable/disable each email in your LearnPress settings later.', 'learnpress' ); ?></p> |
| 16 |
<p><?php _e( 'But right now, you can enable all emails to see how emails work.', 'learnpress' ); ?></p> |
| 17 |
<p><?php _e( 'You can skip to the next step if you don’t want to.', 'learnpress' ); ?></p> |
| 18 |
|
| 19 |
<p> |
| 20 |
<label> |
| 21 |
<input type="checkbox" name="settings[emails][enable]" value="yes"> |
| 22 |
<?php _e( 'Enable emails', 'learnpress' ); ?> |
| 23 |
</label> |
| 24 |
</p> |
| 25 |
|