Added HeaderType:HeaderType

This commit is contained in:
Srinath 2026-02-16 14:33:40 +05:30
parent 578f27337a
commit aade736b5c
1 changed files with 2 additions and 1 deletions

View File

@ -105,11 +105,12 @@ export const postBulkConfiguration = createAsyncThunk(
export const SelfBookingEmailSendLink = createAsyncThunk(
'email/sendEmailLink',
async (EmailData) => {
const { toEmail, type, fileUrl} = EmailData;
const { toEmail, type, fileUrl,HeaderType} = EmailData;
const data = {
toEmail:toEmail,
Type: type,
fileUrl:fileUrl,
HeaderType:HeaderType
};
return await axiosEmail_SMSData.post('/SendUrlEmail', data);
}