/
var
/
www
/
html
/
gte
/
local
/
mailtest
/
lang
/
en
/
Upload File
HOME
<?php // This file is part of eMailTest plugin for Moodle - http://moodle.org/ // // eMailTest is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // eMailTest is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with eMailTest. If not, see <http://www.gnu.org/licenses/>. /** * Strings for component 'local_mailtest', language 'en', branch 'MOODLE_20_STABLE' * * @package local_mailtest * @copyright 2015-2018 TNG Consulting Inc. - www.tngconsulting.ca * @author Michael Milette * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $string['pluginname'] = 'eMail Test'; $string['privacy:metadata'] = 'The eMail Test plugin does not store any personal data about any user.'; $string['pluginname_help'] = 'eMail Test will verify the email settings for this Moodle site by sending a test email message to the address you specify. For Site Administrators only.'; $string['credit'] = 'Michael Milette - <a href="http://www.tngconsulting.ca/">TNG Consulting Inc.</a>'; $string['from'] = '{$a->type}: <strong>{$a->email}</strong> (<a href="{$a->url}">{$a->label}</a>)'; $string['heading'] = 'Email configuration test'; $string['recipientisrequired'] = 'You must specify the recipient\'s email address.'; $string['errorsend'] = 'The test email message could not be delivered to the mail server.</p><p><strong>Recommendation:</strong></p><p>Check your Moodle <a href="{$a}" target="blank">Email settings</a>. For more help, see the FAQ section in the documentation.'; $string['errorcommunications'] = 'Moodle could not communicate with your mail server.</p><p><strong>Recommendation:</strong></p><p>Start by checking your Moodle <a href="{$a}" target="_blank">SMTP mail settings</a>.</p><p>If they look correct, check your SMTP Server and/or firewall settings to ensure that they are configured to accept SMTP connections from your Moodle web server and from your no-reply email address. For more help, see the FAQ section in the documentation.'; $string['fromemail'] = 'From email address'; $string['toemail'] = 'To email address'; $string['youremail'] = 'Your email address'; $string['primaryadminemail'] = 'Primary admin email'; $string['alwaysshowlog'] = 'Always show log of communications with mail server, even if there are no errors.'; $string['sendtest'] = 'Send a test message'; $string['sendmethod'] = 'Email send method'; $string['sentmail'] = 'Moodle successfully delivered the test message to the SMTP mail server.'; $string['sentmailphp'] = 'The Moodle test message was successfully accepted by PHP Mail.'; $string['registered'] = 'Registered user ({$a}).'; $string['notregistered'] = 'Not registered or not logged in.'; $string['phpmethod'] = 'PHP default method'; $string['smtpmethod'] = 'SMTP hosts: {$a}'; $string['message'] = '<p>This is a test message. Please disregard.</p> <p>If you received this email, it means that you have successfully configured your Moodle site\'s email settings.</p> <hr><p><strong>Additional User Information</strong></p> <ul> <li><strong>Registration status :</strong> {$a->regstatus}</li> <li><strong>Preferred language :</strong> {$a->lang}</li> <li><strong>User\'s web browser :</strong> {$a->browser}</li> <li><strong>Message submitted from :</strong> {$a->referer}</li> <li><strong>Moodle version :</strong> {$a->release}</li> <li><strong>User\'s IP address :</strong> {$a->ip}</li> </ul>';