Added HeaderType:HeaderType
This commit is contained in:
parent
578f27337a
commit
aade736b5c
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue