Set Reply-To header to allow replying to bookings
This commit is contained in:
parent
d63ad4c555
commit
96d4a9bd6d
1 changed files with 1 additions and 0 deletions
|
@ -32,6 +32,7 @@ const sendEmail = (calEvent: CalendarEvent, uid: String, {
|
||||||
{
|
{
|
||||||
to: `${calEvent.attendees[0].name} <${calEvent.attendees[0].email}>`,
|
to: `${calEvent.attendees[0].name} <${calEvent.attendees[0].email}>`,
|
||||||
from: `${calEvent.organizer.name} <${from}>`,
|
from: `${calEvent.organizer.name} <${from}>`,
|
||||||
|
replyTo: calEvent.organizer.email,
|
||||||
subject: `Confirmed: ${calEvent.type} with ${calEvent.organizer.name} on ${inviteeStart.format('dddd, LL')}`,
|
subject: `Confirmed: ${calEvent.type} with ${calEvent.organizer.name} on ${inviteeStart.format('dddd, LL')}`,
|
||||||
html: html(calEvent, uid),
|
html: html(calEvent, uid),
|
||||||
text: text(calEvent, uid),
|
text: text(calEvent, uid),
|
||||||
|
|
Loading…
Reference in a new issue