package com.hepl.tunefortwo.service;

import java.math.BigDecimal;
import java.time.LocalDate;

import com.hepl.tunefortwo.entity.Contact;

public interface TemplateService {

    String getForgotPasswordTemplate(String email, String recepientName, String hashed);

    String getCustomPdfData(String paragraph);

    String getComposeMailTemplate(String content);

    String getAccountSetupTemlate( String recepientName,LocalDate createdDate,String artist,String instrument,LocalDate specificDate, String orderNumber, String tacker);
   
    String getContactupTemplate(Contact contactDetails);
    
    String getOrderConfirmTemplate(String songLink, String reviewLink,String orderNumber,String userName,String artist,String instrument,LocalDate createdDate,String title,LocalDate deliveryDate);
    
    String getResetPasswordTemplateNew(String userName, String resetPassWordLink);
    
    String getOtpTemplate(String name, String otp);
    
    String getPaymentMessageTemplate( String paymentStatus, String paymentMode,BigDecimal orderAmount,String userName,String formOrderId,int attempts,LocalDate createdDate,BigDecimal amountDue,String paymentId,String mail,String mobileNumber);

	

}