<%=title%>

<%=title%>

<%= details['doctor.name'] %>
<%= details['doctor.specialties'] %>
<% if (details.bookingStatus.toLowerCase() == 'canceled') { %> <% } %> <% if (details.bookingType.toLowerCase() == 'video') { %> <% } %> <% if (details.comments) { %> <% } %>
Patient Name <%= details['patient.name'] %>
Phone No <%= details['patient.mobile'] %>
Email <%= details['patient.email'] %>
Appointment Timing <%= details.slotDate + ' ' + details.slotTime %>
Booked On <%= moment(details.createdAt).format('YYYY-MM-DD HH:mm') %>
Fees ₹ <%= details.amount %>
Status <%= details.bookingStatus %>
Cancel Reason <%= details.cancelationReason %>
Appointment For <%= details.bookingType %>
Zoom Start Url <%= details.zoomHostUrl.length > 100 ? details.zoomHostUrl.slice(0,100)+ '...' : details.zoomHostUrl %>
Zoom Url <%= details.zoomClientUrl.length > 100 ? details.zoomClientUrl.slice(0,100)+ '...' : details.zoomClientUrl %>
Zoom Pin <%= details.zoomPassword %>
Comment