Added HeaderType:HeaderType
This commit is contained in:
parent
578f27337a
commit
aade736b5c
|
|
@ -105,11 +105,12 @@ export const postBulkConfiguration = createAsyncThunk(
|
||||||
export const SelfBookingEmailSendLink = createAsyncThunk(
|
export const SelfBookingEmailSendLink = createAsyncThunk(
|
||||||
'email/sendEmailLink',
|
'email/sendEmailLink',
|
||||||
async (EmailData) => {
|
async (EmailData) => {
|
||||||
const { toEmail, type, fileUrl} = EmailData;
|
const { toEmail, type, fileUrl,HeaderType} = EmailData;
|
||||||
const data = {
|
const data = {
|
||||||
toEmail:toEmail,
|
toEmail:toEmail,
|
||||||
Type: type,
|
Type: type,
|
||||||
fileUrl:fileUrl,
|
fileUrl:fileUrl,
|
||||||
|
HeaderType:HeaderType
|
||||||
};
|
};
|
||||||
return await axiosEmail_SMSData.post('/SendUrlEmail', data);
|
return await axiosEmail_SMSData.post('/SendUrlEmail', data);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue