Email body not coming when using HTML output bursting in BI 12.2.1.4.0
Hello Experts,
I have configured a report using bursting. While sending email, email body is not populating in the mail when using HTML output format.
Below is the bursting query is data model.
select
fullName AS KEY,
'CR_Monday_Report' AS TEMPLATE,
'en-US' AS LOCALE,
'HTML' AS OUTPUT_FORMAT,
'EMAIL' AS DEL_CHANNEL,
'Test@gmail.com' AS PARAMETER1,
'Test@gmail.com' AS PARAMETER3,
'Reminder: CR Task Assigned to you' AS PARAMETER4,
'Hi please see the below task assigned to you' AS PARAMETER5,
'true' PARAMETER6,
'donotreply@mycompany.com' PARAMETER7
from
( select fullName from table )
Can you please suggest if anything is wrong.