Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor noreplyemail language string #76

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lang/en/tool_emailutils.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
$string['header_help'] = 'HTTP Basic Auth Header';
$string['incorrect_access'] = 'Incorrect access detected. For use only by AWS SNS.';
$string['list'] = 'Complaints List';
$string['noreplyemail'] = 'No reply email: <code>{$a}</code>';
$string['noreplyemail'] = 'No reply email:';
$string['mxrecords'] = 'MX records';
$string['mxtoolbox'] = 'MXtoolbox links';
$string['not_implemented'] = 'Not implemented yet. Search the user report for emails ending with ".b.invalid" and ".c.invalid".';
Expand Down
15 changes: 10 additions & 5 deletions templates/postmaster.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,25 @@
"domain": "@gmail.com",
"count": 100,
"mxrecords": "string",
"vendor": "google",
"vendor": "google"
}
],
"vendorinfo": [
{
"vendors": "google",
"vendor": "google",
"token": "token",
"confirmed": "N/A",
"url": "https://example.com",
"url": "https://example.com"
}
],
]
}
}}
<p>{{#str}} noreplyemail, tool_emailutils, {{ noreply }} {{/str}}</p>
<p>
{{#str}} noreplyemail, tool_emailutils {{/str}}
<code>
{{ noreply }}
</code>
</p>
<table class="admintable generaltable table-sm w-auto">
<thead>
<tr>
Expand Down
Loading