<?php 
_e('Add <a href="http://en.wikipedia.org/wiki/MIME-Version#MIME-Version">MIME-Version</a> mail header record.<br/><small><i>Not recommended for typical WordPress installations.</i></small>', MAILUSERS_I18N_DOMAIN);
?>
<br/>
		</td>
	</tr>
	<tr>
    <th><?php 
_e('Debug', MAILUSERS_I18N_DOMAIN);
?>
</th>
		<td>
			<input 	type="checkbox"
					name="mailusers_debug" id="mailusers_debug" value="true"
					<?php 
if (mailusers_get_debug() == 'true') {
    echo 'checked="checked"';
}
?>
 ></input>
			<?php 
_e('Enable Debug Mode<br/><small><i>Note:  Email is not sent when in debug mode.</i></small>', MAILUSERS_I18N_DOMAIN);
?>
<br/>
		</td>
	</tr>
	<tr style="display:none;">
    <th><?php 
_e('Base64 Encode Email', MAILUSERS_I18N_DOMAIN);
?>
</th>
Exemple #2
0
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Version of the plugin
define('MAILUSERS_CURRENT_VERSION', '4.7.10');
// i18n plugin domain
define('MAILUSERS_I18N_DOMAIN', 'email-users');
// Capabilities used by the plugin
define('MAILUSERS_EMAIL_SINGLE_USER_CAP', 'email_single_user');
define('MAILUSERS_EMAIL_MULTIPLE_USERS_CAP', 'email_multiple_users');
define('MAILUSERS_EMAIL_USER_GROUPS_CAP', 'email_user_groups');
define('MAILUSERS_NOTIFY_USERS_CAP', 'email_users_notify');
// User meta
define('MAILUSERS_ACCEPT_NOTIFICATION_USER_META', 'email_users_accept_notifications');
define('MAILUSERS_ACCEPT_MASS_EMAIL_USER_META', 'email_users_accept_mass_emails');
// Debug
define('MAILUSERS_DEBUG', mailusers_get_debug() === 'true');
//  Enable integration with User Groups plugin?
//  @see http://wordpress.org/plugins/user-groups/
define('MAILUSERS_USER_GROUPS_CLASS', 'KWS_User_Groups');
define('MAILUSERS_USER_GROUPS_TAXONOMY', 'user-group');
define('MAILUSERS_USERS_GROUPS_PREFIX', 'ug');
//  Enable integration with User Access Manager plugin?
//  @see http://wordpress.org/plugins/user-access-manager/
define('MAILUSERS_USER_ACCESS_MANAGER_CLASS', 'UserAccessManager');
define('MAILUSERS_USER_ACCESS_MANAGER_PREFIX', 'uam');
//  Enable integration with ItThinx Groups plugin?
//  @see http://wordpress.org/plugins/groups/
define('MAILUSERS_ITTHINX_GROUPS_CLASS', 'Groups_WordPress');
define('MAILUSERS_ITTHINX_GROUPS_PREFIX', 'groups');
//  Enable integration with PMPro plugin?
//  @see http://wordpress.org/plugins/paid-memberships-pro/