diff options
author | Zoddo <zoddo.ino@gmail.com> | 2015-08-30 18:56:19 +0200 |
---|---|---|
committer | Zoddo <zoddo.ino@gmail.com> | 2015-09-09 17:51:14 +0200 |
commit | 57cb7e41111b272de1fa01696a2652095c9a573d (patch) | |
tree | 03a6a6fdc474cde03d3bb2bcc40c2f2c50a2b6af /phpBB/language | |
parent | 2c188f22d007479477a2f5ede15a2067c7cd2242 (diff) | |
download | forums-57cb7e41111b272de1fa01696a2652095c9a573d.tar forums-57cb7e41111b272de1fa01696a2652095c9a573d.tar.gz forums-57cb7e41111b272de1fa01696a2652095c9a573d.tar.bz2 forums-57cb7e41111b272de1fa01696a2652095c9a573d.tar.xz forums-57cb7e41111b272de1fa01696a2652095c9a573d.zip |
[ticket/10165] Add a "Send test email" feature
PHPBB3-10165
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/board.php | 3 | ||||
-rw-r--r-- | phpBB/language/en/email/test.txt | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/board.php b/phpBB/language/en/acp/board.php index 001775349a..2778ce75eb 100644 --- a/phpBB/language/en/acp/board.php +++ b/phpBB/language/en/acp/board.php @@ -559,6 +559,8 @@ $lang = array_merge($lang, array( 'EMAIL_SIG_EXPLAIN' => 'This text will be attached to all emails the board sends.', '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>', + '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_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', @@ -574,6 +576,7 @@ $lang = array_merge($lang, array( 'SMTP_SETTINGS' => 'SMTP settings', 'SMTP_USERNAME' => 'SMTP username', 'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your SMTP server requires it.', + 'TEST_EMAIL_SENT' => 'The test email has been sent.', '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.', )); diff --git a/phpBB/language/en/email/test.txt b/phpBB/language/en/email/test.txt new file mode 100644 index 0000000000..91a737248b --- /dev/null +++ b/phpBB/language/en/email/test.txt @@ -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} |