Feat: Add Mail Assure to quick presets

This commit is contained in:
2025-12-27 20:20:17 +11:00
parent 592f82d73e
commit 51c2d4378b
3 changed files with 8 additions and 0 deletions

View File

@@ -134,6 +134,7 @@ Click **"Auto Discovery Test"** to automatically test all common port and encryp
| **SendGrid** | smtp.sendgrid.net | 587 | STARTTLS |
| **Mailgun** | smtp.mailgun.org | 587 | STARTTLS |
| **Amazon SES** | email-smtp.us-east-1.amazonaws.com | 587 | STARTTLS |
| **Mail Assure** | smtpout.mtaroutes.com | 587 | STARTTLS |
---

View File

@@ -74,6 +74,7 @@
<option value="sendgrid">SendGrid</option>
<option value="mailgun">Mailgun</option>
<option value="amazonses">Amazon SES</option>
<option value="mailassure">Mail Assure</option>
<option value="custom">💾 Last Used Configuration</option>
</select>
</div>

View File

@@ -34,6 +34,12 @@ const PRESETS = {
port: '587',
secure: 'false',
name: 'Amazon SES'
},
mailassure: {
host: 'smtpout.mtaroutes.com',
port: '587',
secure: 'false',
name: 'Mail Assure'
}
};