mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #3871 from Zoddo/ticket/10165
[ticket/10165] Add a "Send test email" feature
This commit is contained in:
commit
3c448f889f
3 changed files with 41 additions and 0 deletions
|
@ -448,6 +448,7 @@ class acp_board
|
||||||
'board_email' => array('lang' => 'ADMIN_EMAIL', 'validate' => 'email', 'type' => 'email:25:100', 'explain' => true),
|
'board_email' => array('lang' => 'ADMIN_EMAIL', 'validate' => 'email', 'type' => 'email:25:100', 'explain' => true),
|
||||||
'board_email_sig' => array('lang' => 'EMAIL_SIG', 'validate' => 'string', 'type' => 'textarea:5:30', 'explain' => true),
|
'board_email_sig' => array('lang' => 'EMAIL_SIG', 'validate' => 'string', 'type' => 'textarea:5:30', 'explain' => true),
|
||||||
'board_hide_emails' => array('lang' => 'BOARD_HIDE_EMAILS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
'board_hide_emails' => array('lang' => 'BOARD_HIDE_EMAILS', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
||||||
|
'send_test_email' => array('lang' => 'SEND_TEST_EMAIL', 'validate' => 'bool', 'type' => 'custom', 'method' => 'send_test_email', 'explain' => true),
|
||||||
|
|
||||||
'legend2' => 'SMTP_SETTINGS',
|
'legend2' => 'SMTP_SETTINGS',
|
||||||
'smtp_delivery' => array('lang' => 'USE_SMTP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
'smtp_delivery' => array('lang' => 'USE_SMTP', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => true),
|
||||||
|
@ -631,6 +632,27 @@ class acp_board
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($mode == 'email' && $request->is_set_post('send_test_email'))
|
||||||
|
{
|
||||||
|
if ($config['email_enable'])
|
||||||
|
{
|
||||||
|
include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx);
|
||||||
|
|
||||||
|
$messenger = new messenger(false);
|
||||||
|
$messenger->template('test');
|
||||||
|
$messenger->set_addresses($user->data);
|
||||||
|
$messenger->anti_abuse_headers($config, $user);
|
||||||
|
$messenger->send(NOTIFY_EMAIL);
|
||||||
|
|
||||||
|
trigger_error($user->lang('TEST_EMAIL_SENT') . adm_back_link($this->u_action));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$user->add_lang('memberlist');
|
||||||
|
trigger_error($user->lang('EMAIL_DISABLED') . adm_back_link($this->u_action), E_USER_WARNING);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($submit)
|
if ($submit)
|
||||||
{
|
{
|
||||||
$phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_CONFIG_' . strtoupper($mode));
|
$phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_CONFIG_' . strtoupper($mode));
|
||||||
|
@ -1139,4 +1161,11 @@ class acp_board
|
||||||
return h_radio($field_name, array(1 => 'YES', 0 => 'NO'), $value) .
|
return h_radio($field_name, array(1 => 'YES', 0 => 'NO'), $value) .
|
||||||
($message !== false ? '<br /><span>' . $user->lang($message) . '</span>' : '');
|
($message !== false ? '<br /><span>' . $user->lang($message) . '</span>' : '');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function send_test_email($value, $key)
|
||||||
|
{
|
||||||
|
global $user;
|
||||||
|
|
||||||
|
return '<input class="button2" type="submit" id="' . $key . '" name="' . $key . '" value="' . $user->lang['SEND_TEST_EMAIL'] . '" />';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -559,6 +559,8 @@ $lang = array_merge($lang, array(
|
||||||
'EMAIL_SIG_EXPLAIN' => 'This text will be attached to all emails the board sends.',
|
'EMAIL_SIG_EXPLAIN' => 'This text will be attached to all emails the board sends.',
|
||||||
'ENABLE_EMAIL' => 'Enable board-wide emails',
|
'ENABLE_EMAIL' => 'Enable board-wide emails',
|
||||||
'ENABLE_EMAIL_EXPLAIN' => 'If this is set to disabled no emails will be sent by the board at all. <em>Note the user and admin account activation settings require this setting to be enabled. If currently using “user” or “admin” activation in the activation settings, disabling this setting will disable registration.</em>',
|
'ENABLE_EMAIL_EXPLAIN' => 'If this is set to disabled no emails will be sent by the board at all. <em>Note the user and admin account activation settings require this setting to be enabled. If currently using “user” or “admin” activation in the activation settings, disabling this setting will disable registration.</em>',
|
||||||
|
'SEND_TEST_EMAIL' => 'Send a test email',
|
||||||
|
'SEND_TEST_EMAIL_EXPLAIN' => 'This will send a test email to the address defined in your account.',
|
||||||
'SMTP_AUTH_METHOD' => 'Authentication method for SMTP',
|
'SMTP_AUTH_METHOD' => 'Authentication method for SMTP',
|
||||||
'SMTP_AUTH_METHOD_EXPLAIN' => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
|
'SMTP_AUTH_METHOD_EXPLAIN' => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
|
||||||
'SMTP_CRAM_MD5' => 'CRAM-MD5',
|
'SMTP_CRAM_MD5' => 'CRAM-MD5',
|
||||||
|
@ -574,6 +576,7 @@ $lang = array_merge($lang, array(
|
||||||
'SMTP_SETTINGS' => 'SMTP settings',
|
'SMTP_SETTINGS' => 'SMTP settings',
|
||||||
'SMTP_USERNAME' => 'SMTP username',
|
'SMTP_USERNAME' => 'SMTP username',
|
||||||
'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your SMTP server requires it.',
|
'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your SMTP server requires it.',
|
||||||
|
'TEST_EMAIL_SENT' => 'The test email has been sent.<br />If you don’t receive it, please check your emails configuration.<br /><br />If you require assistance, please visit the <a href="https://www.phpbb.com/community/">phpBB support forums</a>.',
|
||||||
'USE_SMTP' => 'Use SMTP server for email',
|
'USE_SMTP' => 'Use SMTP server for email',
|
||||||
'USE_SMTP_EXPLAIN' => 'Select “Yes” if you want or have to send email via a named server instead of the local mail function.',
|
'USE_SMTP_EXPLAIN' => 'Select “Yes” if you want or have to send email via a named server instead of the local mail function.',
|
||||||
));
|
));
|
||||||
|
|
9
phpBB/language/en/email/test.txt
Normal file
9
phpBB/language/en/email/test.txt
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Subject: phpBB is correctly configured to send emails
|
||||||
|
|
||||||
|
Hello {USERNAME},
|
||||||
|
|
||||||
|
Congratulations. If you received this email, phpBB is correctly configured to send emails.
|
||||||
|
|
||||||
|
In case you require assistance, please visit the phpBB support forums - https://www.phpbb.com/community/
|
||||||
|
|
||||||
|
{EMAIL_SIG}
|
Loading…
Add table
Reference in a new issue