Add email column and action buttons to EventAdmin RSVP table

- Added email column to display attendee_email in the RSVP management table
- Added email icon button to resend confirmation emails to attendees
- Added clipboard icon button to copy RSVP edit links to clipboard
- Updated RSVP interface to include attendee_email and edit_id fields
- Added backend endpoint /api/rsvps/resend-email/:editId for resending emails
- Email and copy buttons are disabled when email/edit_id are not available
- Improved admin functionality for managing RSVPs and communicating with attendees
This commit is contained in:
Ryderjj89
2025-05-26 17:15:52 -04:00
parent ed7b7648a1
commit 7e4baa3388
2 changed files with 106 additions and 0 deletions

View File

@@ -522,6 +522,48 @@ app.get('/api/rsvps/edit/:editId', async (req: Request, res: Response) => {
}
});
// Resend RSVP edit link email
app.post('/api/rsvps/resend-email/:editId', async (req: Request, res: Response) => {
try {
const { editId } = req.params;
// Get RSVP and event details
const rsvp = await db.get(`
SELECT r.*, e.title, e.slug
FROM rsvps r
JOIN events e ON r.event_id = e.id
WHERE r.edit_id = ?
`, [editId]);
if (!rsvp) {
return res.status(404).json({ error: 'RSVP not found' });
}
if (!rsvp.attendee_email) {
return res.status(400).json({ error: 'No email address associated with this RSVP' });
}
if (!process.env.EMAIL_USER) {
return res.status(500).json({ error: 'Email service not configured' });
}
// Send the edit link email
const editLink = `${process.env.FRONTEND_BASE_URL}/events/${rsvp.slug}/rsvp/edit/${editId}`;
await sendRSVPEditLinkEmail({
eventTitle: rsvp.title,
eventSlug: rsvp.slug,
name: rsvp.name,
to: rsvp.attendee_email,
editLink,
});
res.json({ message: 'Email sent successfully' });
} catch (error) {
console.error('Error resending RSVP edit link email:', error);
res.status(500).json({ error: 'Failed to send email' });
}
});
app.delete('/api/events/:slug/rsvps/:id', async (req: Request, res: Response) => {
try {