Bug/email notes hidden (#2611)
* Fix Width * Fixes email notes * Fixing reschedule email Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
parent
01fdbaa990
commit
7d3f070e27
1 changed files with 12 additions and 4 deletions
|
@ -673,7 +673,11 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
await sendRescheduledEmails({ ...evt, additionInformation: metadata });
|
await sendRescheduledEmails({
|
||||||
|
...evt,
|
||||||
|
additionInformation: metadata,
|
||||||
|
additionalNotes, // Resets back to the addtionalNote input and not the overriden value
|
||||||
|
});
|
||||||
}
|
}
|
||||||
// If it's not a reschedule, doesn't require confirmation and there's no price,
|
// If it's not a reschedule, doesn't require confirmation and there's no price,
|
||||||
// Create a booking
|
// Create a booking
|
||||||
|
@ -703,13 +707,17 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
|
||||||
metadata.conferenceData = results[0].createdEvent?.conferenceData;
|
metadata.conferenceData = results[0].createdEvent?.conferenceData;
|
||||||
metadata.entryPoints = results[0].createdEvent?.entryPoints;
|
metadata.entryPoints = results[0].createdEvent?.entryPoints;
|
||||||
}
|
}
|
||||||
await sendScheduledEmails({ ...evt, additionInformation: metadata });
|
await sendScheduledEmails({
|
||||||
|
...evt,
|
||||||
|
additionInformation: metadata,
|
||||||
|
additionalNotes,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eventType.requiresConfirmation && !rescheduleUid) {
|
if (eventType.requiresConfirmation && !rescheduleUid) {
|
||||||
await sendOrganizerRequestEmail(evt);
|
await sendOrganizerRequestEmail({ ...evt, additionalNotes });
|
||||||
await sendAttendeeRequestEmail(evt, attendeesList[0]);
|
await sendAttendeeRequestEmail({ ...evt, additionalNotes }, attendeesList[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof eventType.price === "number" && eventType.price > 0 && !originalRescheduledBooking?.paid) {
|
if (typeof eventType.price === "number" && eventType.price > 0 && !originalRescheduledBooking?.paid) {
|
||||||
|
|
Loading…
Reference in a new issue