Reputation: 15702
I'm using Jasper Report to generate reports in pdf format in my apex application. i want to email this generated pdf file.
Imagine there is a button as Make Report
. when user click this button, pdf file should create and send that created pdf file with email.
I know process to create pdf file using Jasper Report. i can implement that part in my oracle apex application. but how could i email pdf file after generating ?
Upvotes: 1
Views: 1317
Reputation: 7028
I don't have jasper reports, but if you have made it work already: can you call it and get a report back in say a BLOB
?
If yes, then using apex_mail
can help you, since it provides the ADD_ATTACHMENT procedure, which takes a blob as input.
Upvotes: 1