1
0
mirror of https://github.com/axllent/mailpit.git synced 2025-12-09 23:31:40 +02:00

Feature: HTML check to test & score mail client compatibility with HTML emails

This commit is contained in:
Ralph Slooten
2023-07-30 17:04:06 +12:00
parent 7d2716ee17
commit 1922651d41
26 changed files with 6163 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ import commonMixins from '../mixins.js'
export default {
props: {
message: Object,
relayConfig: Object,
uiConfig: Object,
releaseAddresses: Array
},
@@ -85,16 +85,16 @@ export default {
<div class="invalid-feedback">Invalid email address</div>
</div>
</div>
<div class="form-text text-center" v-if="relayConfig.MessageRelay.RecipientAllowlist != ''">
<div class="form-text text-center" v-if="uiConfig.MessageRelay.RecipientAllowlist != ''">
Note: A recipient allowlist has been configured. Any mail address not matching it will be rejected.
<br class="d-none d-md-inline">
Configured allowlist: <b>{{ relayConfig.MessageRelay.RecipientAllowlist }}</b>
Configured allowlist: <b>{{ uiConfig.MessageRelay.RecipientAllowlist }}</b>
</div>
<div class="form-text text-center">
Note: For testing purposes, a unique Message-Id will be generated on send.
<br class="d-none d-md-inline">
SMTP delivery failures will bounce back to
<b v-if="relayConfig.MessageRelay.ReturnPath != ''">{{ relayConfig.MessageRelay.ReturnPath }}</b>
<b v-if="uiConfig.MessageRelay.ReturnPath != ''">{{ uiConfig.MessageRelay.ReturnPath }}</b>
<b v-else>{{ message.ReturnPath }}</b>.
</div>
</div>