PluginProbe
wpForo Forum / 3.0.8
wpForo Forum v3.0.8
3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 1.4.2 All 137 releases
wpforo / admin / settings / email.php

email.php in wpForo Forum 3.0.8, at admin/settings/email.php

71 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if( ! defined( "ABSPATH" ) ) exit() ?>
2
3 <input type="hidden" name="wpfaction" value="email_settings_save">
4
5 <?php
6 WPF()->settings->header( 'email' );
7 WPF()->settings->form_field( 'email', 'from_name' );
8 WPF()->settings->form_field( 'email', 'from_email' );
9 WPF()->settings->form_field( 'email', 'admin_emails' );
10 WPF()->settings->form_field( 'email', 'new_topic_notify' );
11 WPF()->settings->form_field( 'email', 'new_reply_notify' );
12 ?>
13
14 <div class="wpf-subtitle">
15 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'Post Reporting Emails', 'wpforo' ) ?>
16 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes from post reporting pop-up form.', 'wpforo' ) ?></p>
17 </div>
18 <?php
19 WPF()->settings->form_field( 'email', 'report_email_subject' );
20 WPF()->settings->form_field( 'email', 'report_email_message' );
21 ?>
22
23
24 <div class="wpf-subtitle">
25 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'New User Registration Email for Administrators', 'wpforo' ) ?>
26 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes when new user registers to site', 'wpforo' ) ?></p>
27 </div>
28 <?php
29 WPF()->settings->form_field( 'email', 'disable_new_user_admin_notification' );
30 WPF()->settings->form_field( 'email', 'overwrite_new_user_notification_admin' );
31 WPF()->settings->form_field( 'email', 'wp_new_user_notification_email_admin_subject' );
32 WPF()->settings->form_field( 'email', 'wp_new_user_notification_email_admin_message' );
33 ?>
34
35 <div class="wpf-subtitle">
36 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'New User Registration Email for User', 'wpforo' ) ?>
37 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes when new user registers to site', 'wpforo' ) ?></p>
38 </div>
39 <?php
40 WPF()->settings->form_field( 'email', 'overwrite_new_user_notification' );
41 WPF()->settings->form_field( 'email', 'wp_new_user_notification_email_subject' );
42 WPF()->settings->form_field( 'email', 'wp_new_user_notification_email_message' );
43 ?>
44
45 <div class="wpf-subtitle">
46 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'After User Delete Notification Email for Administrators', 'wpforo' ) ?>
47 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes when a user deletes self account from site', 'wpforo' ) ?></p>
48 </div>
49 <?php
50 WPF()->settings->form_field( 'email', 'after_user_delete_notification_email_admin_subject' );
51 WPF()->settings->form_field( 'email', 'after_user_delete_notification_email_admin_message' );
52 ?>
53
54 <div class="wpf-subtitle">
55 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'Reset Password Emails', 'wpforo' ) ?>
56 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes from Reset Password form.', 'wpforo' ) ?></p>
57 </div>
58 <?php
59 WPF()->settings->form_field( 'email', 'overwrite_reset_password_email' );
60 WPF()->settings->form_field( 'email', 'reset_password_email_message' );
61 ?>
62
63 <div class="wpf-subtitle">
64 <span class="dashicons dashicons-admin-users"></span> <?php _e( 'After User Approve Email', 'wpforo' ) ?>
65 <p class="wpf-desc" style="padding: 5px 2px 0;"><?php _e( 'This message comes when moderators has been manually approved a user', 'wpforo' ) ?></p>
66 </div>
67 <?php
68 WPF()->settings->form_field( 'email', 'after_user_approve_email_subject' );
69 WPF()->settings->form_field( 'email', 'after_user_approve_email_message' );
70 ?>
71