replaced vague notes with specific intended use, also fixed modal on top of modal for reviews
This commit is contained in:
@@ -53,7 +53,6 @@ class RentalFlowEmailService {
|
||||
* @param {string} rental.totalAmount - Total rental amount
|
||||
* @param {string} rental.payoutAmount - Owner's payout amount
|
||||
* @param {string} rental.deliveryMethod - Delivery method
|
||||
* @param {string} rental.notes - Rental notes from renter
|
||||
* @returns {Promise<{success: boolean, messageId?: string, error?: string}>}
|
||||
*/
|
||||
async sendRentalRequestEmail(owner, renter, rental) {
|
||||
@@ -88,7 +87,7 @@ class RentalFlowEmailService {
|
||||
? parseFloat(rental.payoutAmount).toFixed(2)
|
||||
: "0.00",
|
||||
deliveryMethod: rental.deliveryMethod || "Not specified",
|
||||
rentalNotes: rental.notes || "No additional notes provided",
|
||||
intendedUse: rental.intendedUse || "Not specified",
|
||||
approveUrl: approveUrl,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user