import { IEvent } from "../../models/Event.js";
import getConfig from "../config.js";
const config = getConfig();
export const successfulRSVPResponse = ({
event,
newAttendee,
fullAttendee,
}: {
event: IEvent;
newAttendee: { id?: string; name: string };
fullAttendee: { _id: string };
}) =>
`@${newAttendee.name} Thanks for RSVPing! You can remove yourself from the RSVP list by clicking here.`;