diff --git a/src/Features/ConfigMasterPage/ConfigMasterPage.js b/src/Features/ConfigMasterPage/ConfigMasterPage.js index f2797b2..cf6e03b 100644 --- a/src/Features/ConfigMasterPage/ConfigMasterPage.js +++ b/src/Features/ConfigMasterPage/ConfigMasterPage.js @@ -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); }