Hi ,
When I am sending Database mail, Body of the mail is coming blank.
EXEC msdb..Sp_send_dbmail
@profile_name = @DBprofile,
@recipients =@receipents,
@subject = 'Test',
@body_format = 'HTML',
@body ='Test'From some SQL instance mail triggering properly, but only one instance I am facing this issue.
Issue may because of @body_format = 'HTML' , if I changed to @body_format = 'TEXT' will it work fine?
Kindly guide me.