dynamic action to email chart image [message #613744] |
Fri, 09 May 2014 19:21 |
|
llei
Messages: 1 Registered: December 2010
|
Junior Member |
|
|
I created a dynamic action button with pl/sql code behind to send an email to an email address. I would like to attach the image of that page(contains a chart) to an email address. How do I do it? Right now with the following pl/sql, I could only send a URL to the email address. but I need to send a chart on that page. thank you for your help.
declare
begin
APEX_MAIL.send (p_to =>'xxxx@xxx.com',p_from => 'apex@xxx.com', p_body => 'Text Data 1233', p_body_html => 'https://ais-prod-dba-1:4443/pls/apex/f?p='||:APP_ID||':'||:APP_PAGE_ID||':'||:APP_SESSION||':PDF',p_SUBJ => 'APEX EMAIL', p_cc => 'xxx@xxx.com', p_bcc => NULL , p_replyto => NULL);
end;
|
|
|