Skip to content

Commit

Permalink
booking id add to email
Browse files Browse the repository at this point in the history
  • Loading branch information
DFanso committed Jan 6, 2024
1 parent aef2709 commit d0de345
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions server/src/email/templates/booking-confirmation.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
<h1>Booking Confirmation</h1>
<p>Dear {{userName}},</p>
<div class="movie-details">
<p><strong>Booking ID:</strong> {{bookingId}}</p>
<p><strong>Movie:</strong> {{movieName}}</p>
<p><strong>Show Time:</strong> {{showTime}}</p>
<p><strong>Seats:</strong> {{seats}}</p>
Expand Down
1 change: 1 addition & 0 deletions server/src/paypal/paypal.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export class PaypalController {
seats: booking.selectedSeats,
totalPrice: booking.totalPrice,
movieImageUrl: movie.bannerImage,
bookingId: bookingId,
},
);

Expand Down

0 comments on commit d0de345

Please sign in to comment.