Add footer asset selector for email customization
- New /api/assets endpoint to list available icons from assets folder - Dynamic footer generation with multiple selectable icons - Thumbnail grid UI for asset selection in the mail form - Selected icons are embedded as CID attachments in emails Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -43,6 +43,13 @@
|
|||||||
<textarea id="body" name="body" required rows="8" placeholder="Ihre Nachricht..."></textarea>
|
<textarea id="body" name="body" required rows="8" placeholder="Ihre Nachricht..."></textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Footer-Icons</label>
|
||||||
|
<div id="assetGrid" class="asset-grid">
|
||||||
|
<p class="loading-message">Lade Assets...</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<button type="submit" id="submitBtn">Senden</button>
|
<button type="submit" id="submitBtn">Senden</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|||||||
@@ -4,21 +4,28 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
const submitBtn = document.getElementById('submitBtn');
|
const submitBtn = document.getElementById('submitBtn');
|
||||||
const historyList = document.getElementById('historyList');
|
const historyList = document.getElementById('historyList');
|
||||||
const clearHistoryBtn = document.getElementById('clearHistory');
|
const clearHistoryBtn = document.getElementById('clearHistory');
|
||||||
|
const assetGrid = document.getElementById('assetGrid');
|
||||||
|
|
||||||
// Load history on page load
|
// Load history and assets on page load
|
||||||
loadHistory();
|
loadHistory();
|
||||||
|
loadAssets();
|
||||||
|
|
||||||
// Form submission
|
// Form submission
|
||||||
form.addEventListener('submit', async (e) => {
|
form.addEventListener('submit', async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
||||||
const formData = new FormData(form);
|
const formData = new FormData(form);
|
||||||
|
const selectedAssets = Array.from(
|
||||||
|
document.querySelectorAll('input[name="footerAssets"]:checked')
|
||||||
|
).map(cb => cb.value);
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
to: formData.get('to'),
|
to: formData.get('to'),
|
||||||
cc: formData.get('cc') || undefined,
|
cc: formData.get('cc') || undefined,
|
||||||
subject: formData.get('subject'),
|
subject: formData.get('subject'),
|
||||||
body: formData.get('body'),
|
body: formData.get('body'),
|
||||||
isHtml: formData.get('format') === 'html'
|
isHtml: formData.get('format') === 'html',
|
||||||
|
footerAssets: selectedAssets
|
||||||
};
|
};
|
||||||
|
|
||||||
submitBtn.disabled = true;
|
submitBtn.disabled = true;
|
||||||
@@ -80,6 +87,42 @@ document.addEventListener('DOMContentLoaded', () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Load assets from server
|
||||||
|
async function loadAssets() {
|
||||||
|
try {
|
||||||
|
const response = await fetch('/api/assets');
|
||||||
|
const result = await response.json();
|
||||||
|
|
||||||
|
if (result.success) {
|
||||||
|
renderAssetGrid(result.assets);
|
||||||
|
} else {
|
||||||
|
assetGrid.innerHTML = '<p class="empty-message">Fehler beim Laden der Assets</p>';
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error loading assets:', error);
|
||||||
|
assetGrid.innerHTML = '<p class="empty-message">Fehler beim Laden der Assets</p>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Render asset grid
|
||||||
|
function renderAssetGrid(assets) {
|
||||||
|
if (!assets || assets.length === 0) {
|
||||||
|
assetGrid.innerHTML = '<p class="empty-message">Keine Assets verfügbar</p>';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
assetGrid.innerHTML = assets.map(filename => {
|
||||||
|
const name = filename.replace(/\.[^.]+$/, '');
|
||||||
|
return `
|
||||||
|
<label class="asset-item">
|
||||||
|
<input type="checkbox" name="footerAssets" value="${filename}">
|
||||||
|
<img src="/assets/${filename}" alt="${name}">
|
||||||
|
<span class="asset-name">${name}</span>
|
||||||
|
</label>
|
||||||
|
`;
|
||||||
|
}).join('');
|
||||||
|
}
|
||||||
|
|
||||||
// Render history list
|
// Render history list
|
||||||
function renderHistory(history) {
|
function renderHistory(history) {
|
||||||
if (!history || history.length === 0) {
|
if (!history || history.length === 0) {
|
||||||
|
|||||||
@@ -235,12 +235,64 @@ button:disabled {
|
|||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.empty-message {
|
.empty-message,
|
||||||
|
.loading-message {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #999;
|
color: #999;
|
||||||
padding: 40px 20px;
|
padding: 40px 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Asset Grid */
|
||||||
|
.asset-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
|
||||||
|
gap: 10px;
|
||||||
|
padding: 10px;
|
||||||
|
background: #f9f9f9;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
padding: 8px;
|
||||||
|
border: 2px solid transparent;
|
||||||
|
border-radius: 4px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item:hover {
|
||||||
|
background: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item img {
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item .asset-name {
|
||||||
|
font-size: 11px;
|
||||||
|
color: #666;
|
||||||
|
margin-top: 4px;
|
||||||
|
text-align: center;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item:has(input:checked) {
|
||||||
|
border-color: #3498db;
|
||||||
|
background: #e7f3fd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.asset-item input[type="checkbox"] {
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
.container {
|
.container {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@@ -15,23 +15,25 @@ const transporter = nodemailer.createTransport({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const FOOTER_NAME = process.env.MAIL_FOOTER_NAME || 'Joachim Hummel';
|
const FOOTER_NAME = process.env.MAIL_FOOTER_NAME || 'Joachim Hummel';
|
||||||
const FOOTER_IMAGE = path.join(__dirname, '..', 'assets', 'homeicon.png');
|
|
||||||
|
|
||||||
function getHtmlFooter() {
|
function getHtmlFooter(assets) {
|
||||||
|
if (!assets || assets.length === 0) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
const icons = assets.map(filename => {
|
||||||
|
const cid = filename.replace(/\.[^.]+$/, '');
|
||||||
|
return `<img src="cid:${cid}" alt="${cid}" width="40" height="40" style="display:inline-block; margin-right:8px;"/>`;
|
||||||
|
}).join('');
|
||||||
|
|
||||||
return `
|
return `
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<hr style="border: none; border-top: 1px solid #ddd; margin: 20px 0;"/>
|
<hr style="border: none; border-top: 1px solid #ddd; margin: 20px 0;"/>
|
||||||
<table cellpadding="0" cellspacing="0" style="font-family: Arial, sans-serif; font-size: 14px; color: #666;">
|
<div style="font-family: Arial, sans-serif; font-size: 14px; color: #666;">
|
||||||
<tr>
|
<div style="margin-bottom: 8px;">${icons}</div>
|
||||||
<td style="vertical-align: middle; padding-right: 10px;">
|
|
||||||
<img src="cid:homeicon" alt="Home" width="40" height="40" style="display: block;"/>
|
|
||||||
</td>
|
|
||||||
<td style="vertical-align: middle;">
|
|
||||||
<strong>Absender</strong><br/>
|
<strong>Absender</strong><br/>
|
||||||
${FOOTER_NAME}
|
${FOOTER_NAME}
|
||||||
</td>
|
</div>
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40,17 +42,19 @@ function getTextFooter() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function sendMail(email) {
|
async function sendMail(email) {
|
||||||
|
const footerAssets = email.footerAssets || [];
|
||||||
|
|
||||||
|
const attachments = footerAssets.map(filename => ({
|
||||||
|
filename,
|
||||||
|
path: path.join(__dirname, '..', 'assets', filename),
|
||||||
|
cid: filename.replace(/\.[^.]+$/, '')
|
||||||
|
}));
|
||||||
|
|
||||||
const mailOptions = {
|
const mailOptions = {
|
||||||
from: `"${process.env.MAIL_FROM_NAME}" <${process.env.MAIL_FROM_EMAIL}>`,
|
from: `"${process.env.MAIL_FROM_NAME}" <${process.env.MAIL_FROM_EMAIL}>`,
|
||||||
to: email.to,
|
to: email.to,
|
||||||
subject: email.subject,
|
subject: email.subject,
|
||||||
attachments: [
|
attachments
|
||||||
{
|
|
||||||
filename: 'homeicon.png',
|
|
||||||
path: FOOTER_IMAGE,
|
|
||||||
cid: 'homeicon'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if (email.cc) {
|
if (email.cc) {
|
||||||
@@ -58,11 +62,10 @@ async function sendMail(email) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (email.isHtml) {
|
if (email.isHtml) {
|
||||||
mailOptions.html = email.body + getHtmlFooter();
|
mailOptions.html = email.body + getHtmlFooter(footerAssets);
|
||||||
} else {
|
} else {
|
||||||
mailOptions.text = email.body + getTextFooter();
|
mailOptions.text = email.body + getTextFooter();
|
||||||
// Also send HTML version with footer for better display
|
mailOptions.html = `<pre style="font-family: inherit; white-space: pre-wrap;">${email.body}</pre>` + getHtmlFooter(footerAssets);
|
||||||
mailOptions.html = `<pre style="font-family: inherit; white-space: pre-wrap;">${email.body}</pre>` + getHtmlFooter();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const info = await transporter.sendMail(mailOptions);
|
const info = await transporter.sendMail(mailOptions);
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
require('dotenv').config();
|
require('dotenv').config();
|
||||||
|
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const db = require('./database');
|
const db = require('./database');
|
||||||
const mailer = require('./mailer');
|
const mailer = require('./mailer');
|
||||||
@@ -11,6 +12,7 @@ const PORT = process.env.PORT || 3000;
|
|||||||
// Middleware
|
// Middleware
|
||||||
app.use(express.json());
|
app.use(express.json());
|
||||||
app.use(express.static(path.join(__dirname, '..', 'public')));
|
app.use(express.static(path.join(__dirname, '..', 'public')));
|
||||||
|
app.use('/assets', express.static(path.join(__dirname, '..', 'assets')));
|
||||||
|
|
||||||
// Email validation helper
|
// Email validation helper
|
||||||
function isValidEmail(email) {
|
function isValidEmail(email) {
|
||||||
@@ -20,9 +22,29 @@ function isValidEmail(email) {
|
|||||||
|
|
||||||
// API Routes
|
// API Routes
|
||||||
|
|
||||||
|
// Get available assets
|
||||||
|
app.get('/api/assets', (req, res) => {
|
||||||
|
const assetsDir = path.join(__dirname, '..', 'assets');
|
||||||
|
const allowedExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.svg'];
|
||||||
|
|
||||||
|
try {
|
||||||
|
const files = fs.readdirSync(assetsDir);
|
||||||
|
const assets = files
|
||||||
|
.filter(file => {
|
||||||
|
const ext = path.extname(file).toLowerCase();
|
||||||
|
return allowedExtensions.includes(ext);
|
||||||
|
})
|
||||||
|
.sort();
|
||||||
|
|
||||||
|
res.json({ success: true, assets });
|
||||||
|
} catch (error) {
|
||||||
|
res.status(500).json({ success: false, error: error.message });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Send email
|
// Send email
|
||||||
app.post('/api/send', async (req, res) => {
|
app.post('/api/send', async (req, res) => {
|
||||||
const { to, cc, subject, body, isHtml } = req.body;
|
const { to, cc, subject, body, isHtml, footerAssets } = req.body;
|
||||||
|
|
||||||
// Validation
|
// Validation
|
||||||
if (!to || !subject || !body) {
|
if (!to || !subject || !body) {
|
||||||
@@ -46,7 +68,7 @@ app.post('/api/send', async (req, res) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const email = { to, cc, subject, body, isHtml: !!isHtml };
|
const email = { to, cc, subject, body, isHtml: !!isHtml, footerAssets: footerAssets || [] };
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const info = await mailer.sendMail(email);
|
const info = await mailer.sendMail(email);
|
||||||
|
|||||||
Reference in New Issue
Block a user