remove lexoffice name in project

This commit is contained in:
2026-03-06 08:40:53 +01:00
parent b93d9e4def
commit f74f936d72
9 changed files with 39 additions and 39 deletions
+6 -6
View File
@@ -77,12 +77,12 @@
</div>
<div class="card">
<h2>LexOffice & Ordner</h2>
<h2>Import & Ordner</h2>
<div class="form-grid">
<div class="form-group form-group-wide">
<label for="lexoffice_email">LexOffice Import-Emailadresse</label>
<input type="email" id="lexoffice_email" name="lexoffice_email"
value="{{ settings.get('lexoffice_email', '') }}" placeholder="import-xyz@lexoffice.de">
<label for="import_email">Import-Emailadresse</label>
<input type="email" id="import_email" name="import_email"
value="{{ settings.get('import_email', '') }}" placeholder="import@example.com">
</div>
<div class="form-group">
<label for="source_folder">Eingangsordner (IMAP)</label>
@@ -103,7 +103,7 @@
</div>
<div class="form-actions">
<button type="button" class="btn btn-secondary" onclick="testEmail()">
<span class="btn-text">Test-Email an LexOffice senden</span>
<span class="btn-text">Test-Email senden</span>
<span class="btn-spinner" style="display:none;">Sende...</span>
</button>
</div>
@@ -343,7 +343,7 @@ async function testEmail() {
const resp = await fetch('/api/test-email', { method: 'POST', body: getFormData() });
const data = await resp.json();
if (data.success) {
const addr = document.getElementById('lexoffice_email').value;
const addr = document.getElementById('import_email').value;
showAlert('Test-Email erfolgreich an ' + addr + ' gesendet! Einstellungen gespeichert.', 'success');
} else {
showAlert('Test-Email fehlgeschlagen: ' + data.error, 'error');