Hi there,
i would like to know if someone can confirm that this procedure is working for someone?
select workspace_id from apex_applications; -- get security id
/
execute apex_util.set_security_group_id(p_security_group_id =>XXXXXXXXXXXXXXX); -- set correct security id
/
EXECUTE APEX_MAIL.SEND('name@domain.de','name@domain.de','Bodytext',NULL,'Subjecttext',NULL,NULL,'name@domain.de');
EXECUTE APEX_MAIL.PUSH_QUEUE; -- mail sent - is working
/
EXECUTE APEX_UTIL.SUBMIT_FEEDBACK_FOLLOWUP (1, 'Followup text', 'name@domain.de'); -- no mail sent
SELECT * FROM APEX_MAIL_QUEUE; -- empty
Since the APEX_MAIL package is working as intented the SUBMIT_FEEDBACK_FOLLOWUP should work as well or am i wrong?
Regards,
Dikay900